Cycle through a MultiPage Control

R

RobEdgeler

Hello. I have a MultiPage control on a UserForm (in Excel) that
contains 6 pages. When the user presses the "Next" button on the form,
I would like them to be taken to the next page on the MultiPage
control.

I have tried several options, but I cannot get it to behave as desired.
Can anybody provide a workable solution at all please? Or should I be
using a TabStrip instead?

Thanks in advance,

Rob.

:confused:
 
D

dominicb

Good evening RobEdgeler

Stick with the MultiPage - I find them easier to work with than the
TabStrip. Each tab in a multipage (say MultiPage1) has an index
number, starting at zero. So the line below attached to a button will
activate the second tab when clicked.

MultiPage1.Value = 1

HTH

DominicB
 

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