check Boxes

Dgavilanes

Registered User.
Local time
Today, 16:09
Joined
Jun 25, 2001
Messages
109
Is there a way that when I select A ck bx in my form, it will place text in the table current field.
Example
Admin Transfer = ckbx instead of -1
 
What you can do, is to put some code in the event that would fire when you want the text to appear. For example, in the On Click event of the checkbox you could put:


txtMyTextBox.Value = "ckbx"

Hope that gets you to where you need to be. :-)

BL
 

Users who are viewing this thread

Back
Top Bottom