Option Group visiable based on text box value

J

jeremy0028

I have a text box on a form called Type which will hold the following
values

P
S
T

I also have a option group with the following Yes, No, None

If text box called type = P option group visable
If text box called type = S option group Not Visable
If text box called type = T option group Not Visable

I only want the option group to be visiable if type text box value = P


Any Ideas

Thanks in advance.
 
J

J. Goddard

Hi -

in the After Update event of the text box, put something like this:

me!optiongroup.visible= (me!textbox = "P")

John
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top