Start form

G

Gilbert Tordeur

Hello. I am using VB 2005 (Windows Forms). Microsoft proposes a start form
that displays some program information at the start of the program, and then
disappears. What drives the fact that this form disappears ? Elapsed time ?
Some event ? Where is this logic explained ?
Thanks for your help,
Gilbert
 
R

rowe_newsgroups

Hello. I am using VB 2005 (Windows Forms). Microsoft proposes a start form
that displays some program information at the start of the program, and then
disappears. What drives the fact that this form disappears ? Elapsed time ?
Some event ? Where is this logic explained ?
Thanks for your help,
Gilbert

This form is called the "Splash Form" you can set which form to use as
your splash from the project properties tab. Using this, you don't
have to worry about any of the logic that goes into using the form. If
you really want to know what it does, you'll probably have to use a
tool such as Reflector, as I don't believe the implementation has been
published by Microsoft.

Thanks,

Seth Rowe
 
G

Gilbert Tordeur

OK, I forget it.
Thanks for your answer.
Gilbert

rowe_newsgroups said:
This form is called the "Splash Form" you can set which form to use as
your splash from the project properties tab. Using this, you don't
have to worry about any of the logic that goes into using the form. If
you really want to know what it does, you'll probably have to use a
tool such as Reflector, as I don't believe the implementation has been
published by Microsoft.

Thanks,

Seth Rowe
 
G

Guest

Check the following in the Help index:
MinimumSplashScreenDisplayTime
The screen will be displayed for a minimum of this time. If the main form
is still loading after this time increment, then the spash screen will remain
untill the main form is loaded.
 
G

Gilbert Tordeur

Many thanks,
Gilbert

Terry said:
Check the following in the Help index:
MinimumSplashScreenDisplayTime
The screen will be displayed for a minimum of this time. If the main form
is still loading after this time increment, then the spash screen will
remain
untill the main form is loaded.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top