Automatic Tab

J

Jani

After making a selection from a drop down field, is there a way to
automatically move to a specific field?

Thanks, Jani
 
O

Ofer Cohen

On the OnClick event of the combo box you can write the code

Me.[Text Box Name].SetFocus

To move the focus to the text box
 
U

unhinged

Placing that code in the OnClick event would make it difficult for the
user to actually select a value - you want the trigger to be the After
Update event.
 
Top