|
-
August 13th, 2004, 08:07 AM
#1
How To: Create a Splash Screen for a Non MFC Application?
Hi All,
Have a non-MFC _tWinMain application - can someone please tell me how to have it start with a Splash screen?
Thanks and regards,
Siddhartha
-
August 13th, 2004, 09:21 AM
#2
Create a window, with no border and no caption, show it, create a timer for closing it, and in its window procedure, handle WM_TIMER, WM_LBUTTONDOWN, and so on... and of course WM_PAINT to draw a bitmap.
Anyhow, this is more C++ and WinAPI-specific question (that is a "non-MFC" forum) .
Last edited by ovidiucucu; August 13th, 2004 at 09:24 AM.
-
August 13th, 2004, 09:24 AM
#3
-
August 14th, 2004, 03:29 PM
#4
Eventually create a thread for it, so that it gets repainted correctly if your program startup is very slow...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|