To add one to your project
---------------------------
Project > Add Form > Splash Screen
If you only have a Form in the Add Form box:
Tools > Options > Environment
Make sure that the templates directory is correct.
To call it out
-----------------------
In the startup object (Project > Properties)
Typically Sub Main() or a Form
Code:
Dim StartTime As Single
'Show the splash screen for 2 1/2 seconds
frmSplash.Show
StartTime = Timer
Do While Timer < StartTime + 2.5
DoEvents
Loop
frmSplash.Hide
Hope this helps!
DimensionalSolutions@Core.com
While I welcome e-mail messages, please post all thread activity in these forums for the benefit of all members.