View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Display many instances of the same form

Sub Tester2()
Set frm1 = New UserForm1
frm1.Show vbModeless
Set frm2 = New UserForm1
frm2.Show vbModeless

End Sub

You will need to move them around to see them.

--
Regards,
Tom Ogilvy



"Warrio" wrote in message
...
Hello



Is it possible to show many instances a form many times?



If the form is already displayed once, and I try to do (Form.Show) one

more
time, an error message appears and tells that I can't display it twice.



Thanks for any suggestion