Hello,
I have a form with two radio buttons in an option group, a combo box, and several text fields. The selected radio button together with the data typed or selected in the combo box drop down are used to create a query to populate some of the text fields elsewhere in the form.
When the form is opened, a default radio button is selected, and focus is on the combo box where the user enters the first data. The problem I'm trying to solve is that, when the user selects the 2nd radio button, focus remains there, and they have to click or tab to the combo box to continue data entry. I would like to programatically move focus back to the combo box when the other radio button is selected so that they can continue from there.
Should be simple, I though, but can't figure out how to do that. Using SetFocus to move focus back to the combo box when either radio button is clicked (OnGotFocus) doesn't work.
Any thoughts/help appreciated.
Thanks