Starting a userform upon starting the file

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
 
H

Heiko

Type your Code inside the Open-Event of the Workbook:

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

Heiko
:)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top