Code for manual data entry

zooto68

New member
Local time
Today, 10:58
Joined
Sep 7, 2005
Messages
6
Can anyone tell me what code I can use to manually enter data from a textbox. I don't want a bound box, but want to write some code that will take the text from that text box and enter it into a field in a table when i wish it to.

How is this code written please?

Thanks
 
You can either set the Control Source of the text box to the field or execute an Update SQL statement in your code.
 
zooto68 said:
Can anyone tell me what code I can use to manually enter data from a textbox. I don't want a bound box, but want to write some code that will take the text from that text box and enter it into a field in a table when i wish it to.

How is this code written please?

Thanks

If I follow you, you want to type something into a textbox but not have the record reflect that value unless you elect to. What I would do is have a hidden textbox bound to the field. Then use a command button or the double click event to populate that bound box with the entered value.
 

Users who are viewing this thread

Back
Top Bottom