Check Boxes

  • Thread starter Thread starter Guest
  • Start date Start date
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!
 
Write a function called something like Check_All_Boxes and copy your code
below into it. In the After Update event of the 4 Check boxes, call this
function.
 
Back
Top