Multipage Tab's

C

Corey

How can you set (in Initialize Userform procedure) a Mulitpage to Display Tab1 instead of the
previously view Tab ?

Corey....
 
C

Chip Pearson

Corey,

Try something like

Private Sub UserForm_Activate()
Me.MultiPage1.Value = 0 ' 0 = first tab, 1 = second tab, etc
End Sub

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

Corey

thanks Chip
Corey,

Try something like

Private Sub UserForm_Activate()
Me.MultiPage1.Value = 0 ' 0 = first tab, 1 = second tab, etc
End Sub

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

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


Top