SetValue (1 Viewer)

Dan

New member
Local time
Today, 00:03
Joined
Jan 5, 2000
Messages
5
Does anyone know how to use a button control to reset the value of a checkbox to off? I'm using a checkbox to select certain records for a report and would like to assign a macro to a button to reset all of the selected check boxes to off when I'm done. thanks
 

BukHix

Registered User.
Local time
Yesterday, 19:03
Joined
Feb 21, 2002
Messages
379
I think it would be easier with code. All you have to do is set the check box field back to false like this:

chkBox1 = False
chkBox2 = False
chkBox3 = False

If you absolutely have to do this with a macro, you would do the same thing. I mean as far as setting the check boxes to false with a setvalue. Although you may be required to repaint the screen after the setvalues are carried out.
 

Users who are viewing this thread

Top Bottom