resetting tabs

  • Thread starter Thread starter anonymous
  • Start date Start date
A

anonymous

I'm using a tabbed form, and would like to know if there
is a way to have the Tab jump to the first one each time a
new record is selected.

Example, If I have just enterd info on the 2nd tab and
want to go to the
next record I would like the next record to automatically
return to the
first tab.

Is this possible?
 
Hi,
Try something like this in the Current event of your form:

Me.NameOfTab.Pages("NameOfPage").SetFocus

Substitute the correct names.
 
Back
Top