Tab from one page to the next page in Tab Control

R

retired_vol

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
 
Top