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.
Printable View
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.
How about override OnInitDialog()
in your splash.cpp and put SetWindowPos(&wndTop,...)
function?
Good luck. :)
Walter An
Thansk for ur help.
but my splash.cpp dont have OnInitDialog().
how can i initialize SetWindowPos
Hi!
Override OnInitDialog() by using
classwizard. In order to put
OnInitDialog() in ypour splash.cpp,
catch WM_INITDIALOG message.
Good luck. :)
Walter An