I have the following problem: I have a userform menu, from there I can navigate to other pages, and I want to create a "back button" for each page to return to the menu.
I tried to create this:
Private Sub btnback_Click()
Call back_menu(Actions)
End Sub
Sub back_menu(stage) 'Tried: stage As Object
Unload stage
Menu.Show
End Sub
Another example:
Sub next_page(from,to)
Unload from
to.show
This 1st is working now, but everytime I close the userform i got an error:
Run-type error'13' Type missmatch
I know I could write one by one or I could us the Unload Me, but I have other Functions where I would like to use this method to call the right userform.
Thanks in advance