The following code, activates the 2nd page of the MultiPage when the UserForm initializes;
Code:
Private Sub UserForm_Initialize()
MultiPage1.Value = 1
End Sub
Similarly you can decide on which page to be activated when the UserForm is initialized by;
Inserting the following to the UserForm code module:
Code:
Private Sub UserForm_Initialize()
MultiPage1.Value = MyPage
End Sub
And inserting the following in a standart code module, where the page index is declared as a public variable;
Code:
Public MyPage As Integer
'
Sub CallForm()
MyPage = 1
UserForm1.Show
End Sub