Author Topic: Mulipage control in Userform  (Read 3186 times)

0 Members and 1 Guest are viewing this topic.

Amsterdammed

  • Guest
Mulipage control in Userform
« on: July 31, 2005, 09:31:26 PM »
Hello everybody,

I want to use for the first time the Multipage tool in a Userform.

It works fine, but how can I make a default for the start page in my Userform, I always want to start it on the same page.

Thanks in Advance,

Bernd

Keith™

  • Villiage Idiot
  • Seagull
  • Posts: 16899
  • Superior Stupidity at its best
Mulipage control in Userform
« Reply #1 on: July 31, 2005, 11:53:53 PM »
Pages in a MultiPage control are typically Zero based,  therefore 0 would be page 1 and 9 would be page 10. Index your own pages accordingly

Code: [Select]
MultiPage1.Value = 0 ' Shows the first page
Proud provider of opinion and arrogance since November 22, 2003 at 09:35:31 am
CadJockey Militia Field Marshal

Find me on https://parler.com @kblackie

Amsterdammed

  • Guest
Mulipage control in Userform
« Reply #2 on: August 01, 2005, 06:37:39 AM »
:P  Thanks Keith

Barry Clark

  • Guest
Re: Mulipage control in Userform
« Reply #3 on: December 09, 2005, 11:02:30 AM »
I might be understanding quite what you are wanting, but a cheap way of doing that is just to save the project with the page showing the way you want it to.