Tab from one page to the next page in Tab Control

G

Guest

I'm stumped!! How do you get your tabs to go from one page in tab control to
the next page? Right now, when I get to the bottom of the page, it tabs back
to the top. I am using Access 2003 with Windows XP. I want to be able to tab
from one page to the next as I complete my form.
Any help is appreciated.
 
D

Douglas J. Steele

You'll need to use code to set the focus to the first control on the second
tab in the LostFocus event of the last control on the first tab:

Private Sub Control1_LostFocus()

Me.Control2.SetFocus

End Sub
 
D

debbiep

I'm stumped!! How do you get your tabs to go from one page in tab control to
the next page? Right now, when I get to the bottom of the page, it tabs back
to the top. I am using Access 2003 with Windows XP. I want to be able to tab
from one page to the next as I complete my form.
Any help is appreciated.

you can also use ctrl tab when you get to your last field to get to
next tab
 

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