PC Review


Reply
Thread Tools Rate Thread

Displaying a flash screen image on start-up

 
 
Roger on Excel
Guest
Posts: n/a
 
      27th Jul 2008
I would like to have an embedded image be shown for a few seconds on the
startup of a XL workbook.

The flash screen image would be embedded in the workbook.

Can anyone help?

 
Reply With Quote
 
 
 
 
Wigi
Guest
Posts: n/a
 
      27th Jul 2008
Here is information on how to make a splash screen in Excel:

http://www.ozgrid.com/Excel/excel-splash-screen.htm

Perhaps you can change the code a bit to use an image.

For instance, set the Visible property of the image to True, and after the
short periode of time, set it back to Visible = False.

--
Wigi
http://www.wimgielis.be = Excel/VBA, soccer and music


"Roger on Excel" wrote:

> I would like to have an embedded image be shown for a few seconds on the
> startup of a XL workbook.
>
> The flash screen image would be embedded in the workbook.
>
> Can anyone help?
>

 
Reply With Quote
 
Joel
Guest
Posts: n/a
 
      27th Jul 2008
This code will open an embeded object. You need to get the name of the
embedded object

use this
for each shp in sheets("Sheet1")
msgbox(shp.name)
next shp


Private Sub App_WorkbookOpen(ByVal Wb As Workbook)
Sheets("Sheet1").OLEObjects("object 1").Activate

newHour = Hour(Now())
newMinute = Minute(Now())
newSecond = Second(Now()) + 10
waitTime = TimeSerial(newHour, newMinute, newSecond)
Application.Wait waitTime
Sheets("Sheet1").OLEObjects("object 1").Close

End Sub

"Roger on Excel" wrote:

> I would like to have an embedded image be shown for a few seconds on the
> startup of a XL workbook.
>
> The flash screen image would be embedded in the workbook.
>
> Can anyone help?
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
windows start-up screen(image) =?Utf-8?B?RGFrc2hlc2g=?= Windows XP General 1 28th Sep 2005 01:58 PM
Netscape wont start, I get a flash on the screen =?Utf-8?B?Y2Fub24xYQ==?= Windows XP Help 2 7th Sep 2005 04:13 AM
why my customized startup flash make XPE image appear blue screen keey from China Windows XP Embedded 1 3rd Nov 2003 07:29 PM
displaying note page on screen but not on projected image adam Microsoft Powerpoint 1 17th Sep 2003 03:24 AM
The screen starts to flash everytime I start media player 9 CardaZio Windows XP Music 1 11th Sep 2003 09:56 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:24 AM.