Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default start up screen

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

--
Message posted from http://www.ExcelForum.com

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default start up screen

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)

"jamie85 " wrote in message
...
Is there a way i can create a screenshot that appers for 3 seconds when
i open up my spreadsheet?


---
Message posted from http://www.ExcelForum.com/



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default start up screen

http://j-walk.com/ss/excel/tips/tip39.htm
Create a Splash Screen

at John Walkenbach's site

--
Regards,
Tom Ogilvy

"jamie85 " wrote in message
...
Is there a way i can create a screenshot that appers for 3 seconds when
i open up my spreadsheet?


---
Message posted from http://www.ExcelForum.com/



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default start up screen

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

--
Message posted from http://www.ExcelForum.com

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 117
Default start up screen

Jamie:
I have a splash screen that may be what you need, l will email it to
you..no problem...

seeya ste
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Screen. Width Screen.height leerem Excel Discussion (Misc queries) 1 May 22nd 09 01:57 PM
print box opens in right screen of dual screen setup why gerrys Excel Discussion (Misc queries) 1 June 30th 06 06:47 PM
OT :Start your own online business today !start making dollars [email protected] Excel Discussion (Misc queries) 0 May 6th 06 09:29 PM
Need to convert point on screen to various screen resolutions Donna YaWanna Excel Discussion (Misc queries) 5 October 26th 05 10:10 PM
Start spreadsheet with WinXP start Gordon Gradwell Excel Worksheet Functions 1 July 13th 05 11:35 AM


All times are GMT +1. The time now is 08:12 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"