TheSwamp

Code Red => VB(A) => Topic started by: Amsterdammed on July 31, 2005, 09:31:26 PM

Title: Mulipage control in Userform
Post by: Amsterdammed 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
Title: Mulipage control in Userform
Post by: Keith™ 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
Title: Mulipage control in Userform
Post by: Amsterdammed on August 01, 2005, 06:37:39 AM
:P  Thanks Keith
Title: Re: Mulipage control in Userform
Post by: Barry Clark 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.