E eme126 Registered User. Local time Today, 04:11 Joined Jun 2, 2006 Messages 45 Jun 6, 2006 #1 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 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
boblarson Smeghead Local time Today, 04:11 Joined Jan 12, 2001 Messages 32,059 Jun 6, 2006 #2 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
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