Thread: MultiPage
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default MultiPage

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




"Bill" wrote in message
ink.net...
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