When clicking Chexkbox Input Value on a text field in same record?

rodvaN

Registered User.
Local time
Today, 11:35
Joined
May 20, 2009
Messages
92
As the the topic says..
When Click on checkBOX for true then DISPLAY an input for adding value to a text field on the same table.
What would be the code for adding what you type in that inputbox add it on the field?
Thanks
 
Presuming you put the results in a variable:

Me.TextboxName = Me.TextboxName & VariableName
 
Presuming you put the results in a variable:

Me.TextboxName = Me.TextboxName & VariableName

That would not launch an InputBox for typing the value of the field..would it?
 
No. You could do:

Me.TextboxName = Me.TextboxName & InputBox(...)
 

Users who are viewing this thread

Back
Top Bottom