Visiblity in Forms

  • Thread starter Thread starter carlchick
  • Start date Start date
C

carlchick

Guest
How can I disable or dim a field after a value in another field is selected?
 
In the After Update event of the field that will determine if the second field is 'dimmed' use code something like this:

If Me.FieldName = whatever Then
Me.FieldToDim.Enabled = False
End if
 

Users who are viewing this thread

Back
Top Bottom