checkboxes?

A|ex

Registered User.
Local time
Today, 22:24
Joined
Jul 11, 2004
Messages
90
whats the vba code for checking to see if a checkbox is ticked? its Checked or something isnt it? please can you provide me with an example because i want to use it in a if statement.

Thanks
 
Private Sub Command2_Click()
If Me.Check0 = True Then
MsgBox "True"
Else
MsgBox "False"
End If

???
ken
 

Users who are viewing this thread

Back
Top Bottom