Navigating between page tabs

Archie1

Registered User.
Local time
Today, 12:33
Joined
Jan 20, 2016
Messages
29
Hi I have a form with 8 page tabs. I want to have a button on each page that will take me to a specific tab. eg Page tab 1 will have a button that when clicked, will take me to page 2 and then the same on page 2(a button that will take me to page 3) and so on. is this possible? I have no experience with code so will need very easy instructions to follow
 
Why not change the appearance of the tabs to buttons? Other wise it seems daft having tabs as they give you immediate access to any of the pages?
 
the Page index of the control tab is zero based.
on the click of button1 up to button8

private sub cmdButton1_click()
me.tabcontrolname.Value = 0
end sub

private sub cmdButton2_click()
me.tabcontrolname.value = 1
end sub

... etc
 

Users who are viewing this thread

Back
Top Bottom