I have a form that works as so:
There is a field for user input. This TextBox has an inout mask in it.
The next tabstop is another textbox that is transparent and when focus is set on it will retrieve info from a table based on what the user has input.
At the end of all this is a button that calls a private sub that send the info gathered to a seperate table and clears all textboxes to set the user up for the next entry.
The textboxes all clear but when the user inputs in the textbox with the input mask and tabs the value they enters changes to what was in there in the previous record.
The only other thing is, before the information is entered into the table, it is passed into a variable dimmed as a string first. The column value in the table is set to text as well. The input mask allows only numbers.
Why does the value continue to revert to the previous value, even if the textbox clears?
Adam
There is a field for user input. This TextBox has an inout mask in it.
The next tabstop is another textbox that is transparent and when focus is set on it will retrieve info from a table based on what the user has input.
At the end of all this is a button that calls a private sub that send the info gathered to a seperate table and clears all textboxes to set the user up for the next entry.
The textboxes all clear but when the user inputs in the textbox with the input mask and tabs the value they enters changes to what was in there in the previous record.
The only other thing is, before the information is entered into the table, it is passed into a variable dimmed as a string first. The column value in the table is set to text as well. The input mask allows only numbers.
Why does the value continue to revert to the previous value, even if the textbox clears?
Adam