GoToPage

WILYWAYNE11

New member
Local time
Yesterday, 19:39
Joined
Aug 27, 2022
Messages
20
I am running Access 2013. I have a large database with data entered on several tabs in the form to make data entry easier. I would like to use GoToPage macro to return to the first tab titled "Company Info". When I enter that phrase in the Page Number argument it will not work. Any suggestions?
 
you need to SetValue to the TabNumber (zero-based) of the TabControl.

example:
to go to "first" tab:

Me.TabControlName = 0
 

Users who are viewing this thread

Back
Top Bottom