Displaying form on startup?

  • Thread starter Thread starter PEno1
  • Start date Start date
P

PEno1

Hi all, I have created a form and now I would like it to appear as soon as
Excel starts up. If its possible I would like it to appear as a standalone
program (if that makes sense)

TIA,
PE1
 
Hi
for starting it directly after opening put your code in the
workbook_open event procedure of your workbook
 
Try this,


Private Sub Workbook_Open()
Application.Visible = False
UserForm1.Show
Application.Visible = True
End Sub


Regards,
Vic Eldridge
 

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

Back
Top