Check Boxes

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!
 
G

Guest

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top