Initialization using Multipage Tab

W

WLMPilot

I am using Multipage Tabbing for the first time. I want to initialize the
form on page 1. I know how to initialize a userform. Does it change when
using Multipage Tabbing?

Thanks,
Les
 
C

Chip Pearson

Set the Value property of the Multipage control to the tab index you want to
display. The Index is 0-based: 0 = first page, 1 = second page, etc.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting LLC
www.cpearson.com
(email on the web site)
 
W

WLMPilot

I am new to this. I don't quite follow. I know the following is what is
used for initializing a userform. How do I do what you are describing?

Private Sub UserForm_Initialize()
End Sub

Les
 
T

TWR

I think what Chip is trying to say is

Private Sub UserForm_Initialize()
MultiPage1.value=0 assuming you want the first page to be the one
visible.
End Sub
 
W

WLMPilot

Thanks, I will give this a shot.

Les

TWR said:
I think what Chip is trying to say is

Private Sub UserForm_Initialize()
MultiPage1.value=0 assuming you want the first page to be the one
visible.
End Sub
 

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