start up screen

  • Thread starter Thread starter jamie85
  • Start date Start date
J

jamie85

Is there a way i can create a screenshot that appers for 3 seconds whe
i open up my spreadsheet
 
Jamie,

Build yourself a userform, and in its activate event, use OnTime to forward
schedule a macro that closes the form down.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Commonly called a "Splash Screen"

This will require a few steps:

1) Design a Userform that you want to appear (let's say it is calle
UserForm1)

2) Code the UserForm to open upon opening the workbook. This wil
need to be done in the "This Workbook" part.

Private Sub Workbook_Open()
UserForm1.Show
End Sub

3) Code the timing after it opens

Private Sub UserForm1_Activate()
Application.OnTime Now + _
TimeValue("00:00:03"), "KillTheForm"
End Sub

4) Code the "Kill the form" module that you call in the las
procedure...

Private Sub Killthe Form()
Unload Userform1
End Su
 
Jamie:
I have a splash screen that may be what you need, l will email it to
you..no problem...

seeya ste
 

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