MultiPage

B

Bill

Hello,
Need some help please. I have a userform with a multipage. When a
multipage (like the first one) is activated, I would like to enable parts of
the page. I can't seem to find the command to know when the multipage is
activated. Any suggestions?

Thanks,

Bill
 
C

Chip Pearson

The Change event occurs when a page is selected.

Private Sub MultiPage1_Change()
MsgBox Me.MultiPage1.Value
End Sub

Note that the Value is 0-based; the first page is 0, the second
page is 1, etc.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 

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