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

R

robertm600635

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
 
B

Beetle

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
 

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