View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Leith Ross[_667_] Leith Ross[_667_] is offline
external usenet poster
 
Posts: 1
Default Accidentally close user form_how to open


Hello Gary,

Add a VBA Module to your project and place the code below in it. You
can the run it from the Macros Dialog (ALT+F8) when you need to display
the UserForm. Replace UserForm1 in the code with the name of your
UserForm.

Sub ShowMyForm()
On Error Resume Next
UserForm1.Show
End Sub

Sincerely,
Leith Ross


--
Leith Ross
------------------------------------------------------------------------
Leith Ross's Profile: http://www.excelforum.com/member.php...o&userid=18465
View this thread: http://www.excelforum.com/showthread...hreadid=562333