Showing a userform
I have a userform defined. I have a bottom which makes the userform visible.
According to the book "Excel VBA Macro Programming" I should be able to make
it visible with this statement:
userform1.Show
But that didn't work. I had to change the statement to:
VBA.UserForms.Add("userform1").Show
Is that expected?
|