C carlchick Guest Jul 2, 2001 #1 How can I disable or dim a field after a value in another field is selected?
J Jack Cowley Registered User. Local time Today, 10:38 Joined Aug 7, 2000 Messages 2,639 Jul 2, 2001 #2 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
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