Multipage Object on User Form

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
 
R

Ron de Bruin

Hi Paul

You need the value property

MultiPage1.Value = 0 will select the first page.

1 = page 2
 
A

Alex@JPCS

Cheers, Paul

Try:

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

Alex J
 
Top