Hi,
I wonder if anyone has any ideas regarding the following issue I have.
I have a form with multple Textboxes. One of the Textboxes uses 'OnTextChanged' to retrieve information from a database using the information keyed into the Textbox.
My problem is that the user will click or tab to another Textbox, the data is retrieved successfully, but, when the form is available again, the textbox that the user clicked into is not in focus. This means that the user effectively has to click into this textbox twice.
I could set the focus of the next textbox from the ontextchange method, but I don't know which textbox the user actually tried to move into.
I wonder if anyone has any ideas regarding the following issue I have.
I have a form with multple Textboxes. One of the Textboxes uses 'OnTextChanged' to retrieve information from a database using the information keyed into the Textbox.
My problem is that the user will click or tab to another Textbox, the data is retrieved successfully, but, when the form is available again, the textbox that the user clicked into is not in focus. This means that the user effectively has to click into this textbox twice.
I could set the focus of the next textbox from the ontextchange method, but I don't know which textbox the user actually tried to move into.
Comment