Click to See Complete Forum and Search --> : Splash Screen and Tips of the Days


Benjamin Macca
April 6th, 1999, 04:36 AM
Hi,

i have implemented Splash Screen and Tips of the Days on my MFC programme.
But Tips of the days window is covered Splash Screen when the program start up.
How can i solve it? i implemented it by add "components and controls gallery".
thanks.

Walter I An
April 6th, 1999, 05:40 AM
How about override OnInitDialog()
in your splash.cpp and put SetWindowPos(&wndTop,...)
function?

Good luck. :)

Walter An

Benjamin Macca
April 6th, 1999, 09:17 AM
Thansk for ur help.
but my splash.cpp dont have OnInitDialog().
how can i initialize SetWindowPos

Walter I An
April 6th, 1999, 09:58 AM
Hi!
Override OnInitDialog() by using
classwizard. In order to put
OnInitDialog() in ypour splash.cpp,
catch WM_INITDIALOG message.

Good luck. :)

Walter An