Multipage Object on User Form

  • Thread starter Thread starter Paul Cheers
  • Start date Start date
P

Paul Cheers

Hi,

Is it possible and what is the code to select a tab on a
multipage object on a userform? I have 6 different tabs
and want the ability to select different ones.

Not sure if it is possible, I have tried everything!!

Paul
 
Hi Paul

You need the value property

MultiPage1.Value = 0 will select the first page.

1 = page 2
 
Cheers, Paul

Try:

Me.MultiPage1.Value = 0 or Userform1.Multipage1.Value = 5
Page index starts at zero

Alex J
 

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

Back
Top