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 Userform Events

Try something like

Private Sub MultiPage1_Change()
If MultiPage1.SelectedItem.Index = 2 Then
MsgBox "third page selected"
End If
End Sub


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


"SA3214 @Eclipse.co.uk" <sa3214<No Spam wrote in message
...
Once again I crave the assistance of this group

Is there an event which I can use that will be triggered when,
say page 3, of a multipage form is displayed ?

Regards to all
and
TIA