Combobox to autotab

  • Thread starter Thread starter hotrod1952 via AccessMonster.com
  • Start date Start date
H

hotrod1952 via AccessMonster.com

Newbie:
I have a form to enter data into a table with a combo box (combo12) which
gets a list via a query I have set up. The purpose of the combo box is to
select an employee name. I also have a couple of textboxes on the form to
enter other relevent data. The form works fine. What I would like to do is
when a name is selected from the dropdown list in the combo box I would like
the form to automatically advance to the next tab stop which is a textbox
(PaidHours). Now what I do is select the name and tab to this textbox. This
should be easy but I am not seeing the answer. Access 97 database.
 
In the After Update event of the combo box, set the focus to the control you
want to go to next:

Me.PaidHours.SetFocus
 
Back
Top