How to display a splash screen(with a sentence of word) just before
display of the main screen(MDI application) using visual c++??
thanks
Michael Nemtsev - 11 Mar 2005 12:55 GMT
Hallo,
in InitInstance()
see http://www.codeproject.com/dialog/splasher.asp
> How to display a splash screen(with a sentence of word) just before
> display of the main screen(MDI application) using visual c++??
Michael Nemtsev - 11 Mar 2005 12:58 GMT
One more good example
http://www.codeproject.com/miscctrl/csplashscreenex.asp
> How to display a splash screen(with a sentence of word) just before
> display of the main screen(MDI application) using visual c++??
Bernd Muent - 11 Mar 2005 17:08 GMT
wayne schrieb:
> How to display a splash screen(with a sentence of word) just before
> display of the main screen(MDI application) using visual c++??
In InitInstance or OnInitDialog of your main form do something like:
Splash* splash = new Splash(this);
splash->Create();
Sleep(3000);
delete splash;
And Splash is just a simple class derived from CDialog with no Border a
Bitmap on it.
B.

Signature
BM Computer-Services, Bergmannstr. 66, 10961 Berlin
Webdesign, Internet, Layout und Grafik
Tel.: 030/20649400, mobil 0175/7419517, Fax: 030/20649401
Web: http://www.bmservices.de, eMail: kontakt@bmservices.de