Option Group visiable based on text box value

  • Thread starter Thread starter jeremy0028
  • Start date Start date
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.
 
Hi -

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

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

John
 
Back
Top