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
 
Back
Top