Hello!
I am working on a multi-page userform. I want to make the first page (index 0) to be the default page when the form is activated (opened).
I have tried these (but to no avail):
Private Sub UserForm_Activate()
pgeMainMenu.TabIndex = 0
End Sub
Private Sub UserForm_Activate()
pgeMainMenu.Pages (0).SetFocus
End Sub
Any help is highly appreciated.