I have a userform with a multipage control on it and on each page is a definition. On a separate userform, I have questions and if the user does not know the answers, he can click on the image of a question mark next to each question which is supposed to go back to the first userform and go to the specific page where that definition exists but as simple as this sounds I cannot get it to work. This is the code I have for one of the buttons on userform3 that is supposed to reload userform1 and go to a specific page in the multipage control.
Private Sub Image4_Click()
Unload UserForm3
UserForm1.Show
UserForm1.MultiPage1.Value = 4
End Sub
Private Sub Image4_Click()
Unload UserForm3
UserForm1.Show
UserForm1.MultiPage1.Value = 4
End Sub