Automate checkbox using VB (1 Viewer)

cinderella

New member
Local time
Tomorrow, 02:02
Joined
Apr 21, 2008
Messages
3
Hi Everyone,

Hopefully someone would be able to help.

My problem is, is that: How can a "checkbox" be automatically filled in ie: ticked "YES" when a user presses a button.

I would like to know whether or not there is a possible VB solution?

At the moment, i am using macros, however, i do not want the "Checkbox" to be seen - and if a hide it, it does not tick "YES".

Help would be greatly appreciated.
 

ecawilkinson

Registered User.
Local time
Today, 17:32
Joined
Jan 25, 2005
Messages
112
in the onClick procedure for the button, put:
Code:
chkYourCheckBox.value = true
obviously, subsititute chkYourCheckBox with the actual checkbox name in your db.

HTH,
Chris
 

cinderella

New member
Local time
Tomorrow, 02:02
Joined
Apr 21, 2008
Messages
3
Ur absolutely correct.

Hi ecawilkinson,

Your absolutely right.

Sorry to waste your time, i misinterpreted your thread.

Thanks for your help !!!!!
 

Users who are viewing this thread

Top Bottom