• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

MS Access - Setting up a command button to switch tabs

Ramma2

Platinum Member
I'm creating a small app in Access, and currently my data entry page has 3 tabs. I want to create a command button that the user can click to switch to the next tab and continue data entry.

I didn't see the option in the command button creation wizard, anyone know how to set this up?

Thanks!
 
Private Sub Command1_Click()

Me.Page2.SetFocus

End Sub

where page1 displays the command button Command1 that will toggle page2.
 
Back
Top