Setting Tab

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
 
J

John Vinson

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top