Multipage - default to particular page

G

Guest

I would like to force a multipage object to default to a particular page (ie:
left tab). It seems to pick up wherever I left off. This is particularly
annoying because one of the pages has a mulltipage embedded in it.

I've tried setting the TABINDEX to 1 (on the first page), but that didn't do
the trick.

Thanks!
 
P

papou

Hi Clay
Set the Value property in the MultiPage Control, ie:
Userform1.Multipage1.Value = 0
Where 0 corresponds to the first tab from the Multipage.

HTH
Cordially
Pascal
 
G

Guest

Sanctuary much! That was the problem.

Now, why would they pick "Value" as the property, not "TabIndex"? Oh - and,
of course, I did make the mistake of forgetting that computers start at "0"
instead of "1"...

Thanks!
--
Adios,
Clay Harryman


papou said:
Hi Clay
Set the Value property in the MultiPage Control, ie:
Userform1.Multipage1.Value = 0
Where 0 corresponds to the first tab from the Multipage.

HTH
Cordially
Pascal
 
G

Guest

TabIndex is the order in which the controls are tabbed through. Tab key vice
tab on the multipage.

--
Regards,
Tom Ogilvy


Clayman said:
Sanctuary much! That was the problem.

Now, why would they pick "Value" as the property, not "TabIndex"? Oh - and,
of course, I did make the mistake of forgetting that computers start at "0"
instead of "1"...

Thanks!
 

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

Top