I have a combo box and a text box. Once my users click on a member of the combo box, the text box is then populated with data corresponding to the selection made in that combo box.
The problem I have is that if the user drops-down the combo box and makes a selection by typing and tabbing out (instead of simply clicking to make their selection), my text box will not be populated. I have already tried using both the Change event and the LostFocus event.
With the Change event the code is executed as soon as the user types a single letter.
The LostFocus event causes a problem when tabbing throughout the form (code executes if you tab over the combo box after a selection has already been made).
The problem I have is that if the user drops-down the combo box and makes a selection by typing and tabbing out (instead of simply clicking to make their selection), my text box will not be populated. I have already tried using both the Change event and the LostFocus event.
With the Change event the code is executed as soon as the user types a single letter.
The LostFocus event causes a problem when tabbing throughout the form (code executes if you tab over the combo box after a selection has already been made).