Selecting a single Page in a MultiPage

T

Tim Golobic

I've tried Enabled, Activate, Select, SetFocus, but can't seem to find
out how to switch to another page within the same multipage if a
button is clicked.

I'm surely missing something obvious.

Ongoing thanks,

Tim
 
J

JE McGimpsey

I've tried Enabled, Activate, Select, SetFocus, but can't seem to find
out how to switch to another page within the same multipage if a
button is clicked.

I'm surely missing something obvious.

one way:

To switch to page 2 (multipage indexes are zero-based):

Private Sub CommandButton1_Click()
Me.MultiPage1.Value = 1
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top