Defining a checkbox as a variable

eme126

Registered User.
Local time
Today, 04:11
Joined
Jun 2, 2006
Messages
45
Hello all,

I was wondering what should I define a chechbox as if I want to make it a variable, so that when it is checked (= -1), I can check for the -1 and loop somewhere.

Thanks
 
All you have to check for is whether or not it's TRUE (checked) or FALSE (unchecked) -
Code:
If me.chkCheckbox = TRUE then
    Do this code
Else
    Do this code
End If
 

Users who are viewing this thread

Back
Top Bottom