Input data in unbound text box

chu3w

New member
Local time
Today, 04:47
Joined
Feb 26, 2010
Messages
3
Hi, I am trying to enter data in a unbound text box on a form then after entering the data the unbound text box will hold that data and will display that data next time the form is open. Anybody have suggestions?
 
Not possible since the text box is unbound. You could store the value in a global string and call it when needed and it should stick until the database is closed but global strings or global constants make me nervous when multilple users are in the same database. I prefer to have a local temp table in the front end that stores that kinda stuff to ensure the values are where I need them, when needed.
 

Users who are viewing this thread

Back
Top Bottom