Enable a field via a combo box

M

Mike

Is there any way to allow a text box (combo box, tab
control, etc.) on a form to be enabled only if a certain
criteria is met in another field?
 
J

Jason

In the forms On Current event, something like this

If Me.ctlA = x Then
Me.ctlB.Enabled = True
Else
me.ctlB.Enabled = False
End If

Jason
 

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