Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

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

Opening an intro

Status
Not open for further replies.

Rednyx

Civil/Environmental
Feb 22, 2001
42
I want that when my program opens there should be first an introductry picture with name stuf just like when say Word open there is a popup which say Microsoft Word 2000 etc.
i tried to open the Powerpoint file i made by making a form with the whole area of Picture box and linked it to form load.. but it opens just like another form that is with a small x button n minize/maximize button at the top right. i want just the picture. and i want to controll the time it is displayed before teh actual programm starts.
i hope i made my self clear.
 
Replies continue below

Recommended for you

Insert a Splash form in your project. Insert the picture. Then, from your startup function:
Code:
Sub Main()
    Dim StartTime As Single

    'Show the splash screen
    frmSplash.Show

    'Hold it for 2 seconds
    StartTime = Timer
    Do While Timer < StartTime + 2
        DoEvents
    Loop
    frmSplash.Hide

    'Do your stuff

End Sub
DimensionalSolutions@Core.com
While I welcome e-mail messages, please post all thread activity in these forums for the benefit of all members.
 
Rednyx

You can set the CONTROLBOX property of the form containing you graphic to false. There may be some other properties but this one turns off the header of the form.

Regards,
Dave Wilson
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor