View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Kent McPherson Kent McPherson is offline
external usenet poster
 
Posts: 15
Default 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?