Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 42
Default Splash Screen / userform

I have a splas screen showing with this code:
Private Sub UserForm_Activate()
Const SS_DURATION As Long = 5 'seconds
Application.OnTime Now + TimeSerial(0, 0, SS_DURATION), "KillTheForm"
End Sub

Is it possible to have the splash screen show without anything behind them
for 5-10 seconds or while the workbook is loading.

What I want the user to see is the splash screen alone for a short time. No
Excel worksheets, No Excel tool bars, etc.

Hank


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,942
Default Splash Screen / userform

hi
Private Sub UserForm_Activate()
Const SS_DURATION As Long = 5 'seconds
application.visible = false
Application.OnTime Now + TimeSerial(0, 0, SS_DURATION), "KillTheForm"
'application.visible = true 'see note
End Sub
application.visible = false will hide excel and leave only the form showing
application.visible = true will unhide excel at the end of this sub
note: you may want to put the application.visible = true at the end of of
the sub KillTheForm.

regards
FSt1

"HH" wrote:

I have a splas screen showing with this code:
Private Sub UserForm_Activate()
Const SS_DURATION As Long = 5 'seconds
Application.OnTime Now + TimeSerial(0, 0, SS_DURATION), "KillTheForm"
End Sub

Is it possible to have the splash screen show without anything behind them
for 5-10 seconds or while the workbook is loading.

What I want the user to see is the splash screen alone for a short time. No
Excel worksheets, No Excel tool bars, etc.

Hank



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
userform startup splash screen carlito_1985[_9_] Excel Programming 4 September 22nd 05 09:03 AM
Splash screen and various screen resolutions George J Excel Programming 4 October 3rd 04 10:15 PM
Splash Screen Dean[_4_] Excel Programming 2 September 4th 04 11:29 PM
Splash Screen Michelle Excel Programming 2 August 10th 04 11:04 AM
Splash Screen Lee Excel Programming 0 December 1st 03 05:08 PM


All times are GMT +1. The time now is 07:38 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"