Setting Tab

  • Thread starter Thread starter Jeremy
  • Start date Start date
J

Jeremy

First of all, much thanks goes to John W. Vinson. Your
help is was perfectly correct and very much appriciated.

Now, I am working on a form (the same one as before) and
I have an unbound combo box that I can insert a first and
last name, and it auto fills for me. After that combo
box, I have two text boxes which are called Extension and
Cell Number. These are automatically filled when I
choose the name. However...the Extention is
automatically highlighted because it is filled in when
you open the form. I would like to have the Name box be
the the one highlighted at all times. Is this possible?
Thank You, Jeremy Storm
 
However...the Extention is
automatically highlighted because it is filled in when
you open the form. I would like to have the Name box be
the the one highlighted at all times. Is this possible?

Set its Tab Order property to 0.

If this doesn't work, use the Form's Open event to set the focus to
the desired control:

Me!txtName.SetFocus
 
Back
Top