Have 2 userforms called userform1 and userform2
When I have userform1 opened I sometimes need to work on userform2 so Use
However when finished with userform2 I want to be able to click a command button to unload userform2 and reshow userform
I've used
But when userform1 is shown, I want it to be cleared
Also can same be done when I click the cross on userform2, which will unload userform2 and show userform1 but cleared
When I have userform1 opened I sometimes need to work on userform2 so Use
VBA Code:
Userform1.Hide
Userform2.Show
However when finished with userform2 I want to be able to click a command button to unload userform2 and reshow userform
I've used
VBA Code:
Unload userform2
Userform1.show
But when userform1 is shown, I want it to be cleared
Also can same be done when I click the cross on userform2, which will unload userform2 and show userform1 but cleared