Help!
Ive got a userform which has 11 command buttons on it, which in turn will opne the appropriate userform when clicked. This works fine.
However, when i click on the command bitton on the new userform, it calls the module correctly, but wont hide the form?
Ive got a userform which has 11 command buttons on it, which in turn will opne the appropriate userform when clicked. This works fine.
However, when i click on the command bitton on the new userform, it calls the module correctly, but wont hide the form?
Code:
Private Sub CommandButton1_Click()
Call loadES4data
Unload ES4
ES5.Show
End Sub