Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Splash form

Status
Not open for further replies.

Rednyx

Civil/Environmental
Joined
Feb 22, 2001
Messages
42
Location
JP
from where should i insert the splash form ?
 
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top