Starting a userform upon starting the file

  • Thread starter Thread starter Fritznel
  • Start date Start date
F

Fritznel

I need to know how to have a userform pop up as the file
is opened. Is there a way to do this?
Thanks,
Fritz
 
Type your Code inside the Open-Event of the Workbook:

Private Sub Workbook_Open()
<NameofTheUserForm>.Show
End Sub

Heiko
:-)
 
Back
Top