Splash form
Splash form
(OP)
from where should i insert the splash form ?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: Splash form
---------------------------
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
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.