Tabbed form

  • Thread starter Thread starter dplove
  • Start date Start date
D

dplove

I have a form that has 7 tabs. The one problem that I'm having is once I
have completed the info in the 7th tab and I click on the tab button it goes
to the next record but on the 7th tab in the next record. What I would like
for it to do is go to the next record but the very first tab that is named
"General Info".

How can I get this accomplished?

dplove
 
dplove said:
I have a form that has 7 tabs. The one problem that I'm having is
once I have completed the info in the 7th tab and I click on the tab
button it goes to the next record but on the 7th tab in the next
record. What I would like for it to do is go to the next record but
the very first tab that is named "General Info".

How can I get this accomplished?

dplove

In the Current event of the form add code...

Me.NameOfDesiredControl.SetFocus
 
Back
Top