carlchick
07-02-2001, 08:09 AM
How can I disable or dim a field after a value in another field is selected?
|
View Full Version : Visiblity in Forms carlchick 07-02-2001, 08:09 AM How can I disable or dim a field after a value in another field is selected? Jack Cowley 07-02-2001, 08:14 AM 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 |