Defining a checkbox as a variable

eme126

Registered User.
Local time
Today, 08:24
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
 
Hello:

For instance, if you want to "test" the value of a check box named CheckBox1, do the below.

If CheckBox1 = True Then
Run some code here
End IF

Regards
Mark
 

Users who are viewing this thread

Back
Top Bottom