Lynn_AccessUser
Registered User.
- Local time
- Today, 02:49
- Joined
- Feb 4, 2003
- Messages
- 125
I have 2 fields txtExample1 txtExample2. If a user enters data in txtExample1 field txtExample2.enabled = false and and visa versa.
I added the code to the On Change Event:
If IsNull(Me!txtExample2) Or Me!txtExample2= "" Then
txtExample1 .Enabled = True
Else
txtExample1 .Enabled = False
End If
It doesn't work and I am not sure if it is the code or the event or both. Thanks!
I added the code to the On Change Event:
If IsNull(Me!txtExample2) Or Me!txtExample2= "" Then
txtExample1 .Enabled = True
Else
txtExample1 .Enabled = False
End If
It doesn't work and I am not sure if it is the code or the event or both. Thanks!