kcolbert01
Registered User.
- Local time
- Today, 12:29
- Joined
- Jan 13, 2003
- Messages
- 36
I have a check box that I would like to be disabled if the text in another field is 82 or below - and if that same field is 83 or above I would like the check box to be enabled. The code I am using is:
If Me.PerformancePoints <= 82 Then
[Check207].Enabled = False
Else
If Me.PerformancePoints >= 83 Then
[Check207].Enabled = True
End If
End If
I have been able to lock the check box and make it disapper but when I try to disable it I get .runtime error '2101'.
Can anyone tell me what I'm doing wrong?
Thanks
If Me.PerformancePoints <= 82 Then
[Check207].Enabled = False
Else
If Me.PerformancePoints >= 83 Then
[Check207].Enabled = True
End If
End If
I have been able to lock the check box and make it disapper but when I try to disable it I get .runtime error '2101'.
Can anyone tell me what I'm doing wrong?
Thanks