Userform, multipage, select a tab

  • Thread starter Thread starter Jos Vens
  • Start date Start date
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
 
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)
 
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

Multipage label caption 2
Initialization using Multipage Tab 4
Multipage control help 3
Multipage Buttons?? 6
comandbutton 2 select multipage 1
Multipage control 3
Multipage error 1
Userform hides by itself 1

Back
Top