Have a combo box at the top of a form with a whole lot of items loaded to it from an access file. What I want to happen is the program user selects an item from the combo box, which then leads to a record read and population of other objects on the form.
So far so good, can get that to happen. My problem is determining which event to use. The best result thus far is to put code into LostFocus, but then it requires the end user to click somewhere else in the form for the combobox code to fire. Is there a better event that will auto populate the form controls without the user needing to click away from the combobox
So far so good, can get that to happen. My problem is determining which event to use. The best result thus far is to put code into LostFocus, but then it requires the end user to click somewhere else in the form for the combobox code to fire. Is there a better event that will auto populate the form controls without the user needing to click away from the combobox