G
Guest
I created a form with 5 bounded check boxes, one of which is disabled.
I would like the disabled checkbox to be enabled when the other four
checkboxes are checked.
Here is the code I have been trying to use...
Private Sub Player_Checked_In_BeforeUpdate(Cancel As Integer)
If Me([TAW Waiver] = True And [Emergency Waiver] = True And [Minor
Waiver] = True And [Field Waiver] = True) Then
Me![Registration].Enabled = True
End If
End Sub
Thanks in advance for any help/suggestions!
I would like the disabled checkbox to be enabled when the other four
checkboxes are checked.
Here is the code I have been trying to use...
Private Sub Player_Checked_In_BeforeUpdate(Cancel As Integer)
If Me([TAW Waiver] = True And [Emergency Waiver] = True And [Minor
Waiver] = True And [Field Waiver] = True) Then
Me![Registration].Enabled = True
End If
End Sub
Thanks in advance for any help/suggestions!