gray out certain options when a certain value is selected from a c

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form for a client survey and I'd like to be able to gray out a few
of the fields (and the textboxes next to them) if a certain value is selected
from a combobox at the top of the form. How would I go about doing this?

Thanx
 
you could use something like the following code in the after update event of
your combo box (modify the control names to match your form);

If me![combobox] = somevalue Then

me![othercontrol].disabled = true
me![othercontrol2].disabled = true


End If
 
Back
Top