Userform, multipage, select a tab

J

Jos Vens

Hi,

how can I select a certain tab in my multipage object in the Userform
initialize section?

Libra_FrmParameters.mpParameters.tLibra.Select
Libra_FrmParameters.mpParameters.tLibra.Activate

both doesn't work

Thanks
Jos
 
B

Bob Phillips

Jos,

You need to set the value property to the page index (less 1, 0 based)

Me.MultiPage1.Value = 2

as an example sets Page3

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
J

Jos Vens

Thanks a lot Bob,

Jos

Bob Phillips said:
Jos,

You need to set the value property to the page index (less 1, 0 based)

Me.MultiPage1.Value = 2

as an example sets Page3

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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

Similar Threads


Top