How can I display a splash screen using C or C++ in Windows? What libraries or Windows components would be applicable?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Try to create a window with the createwindowex function and use the style (dwStyle) WS_POPUP.
You can read about CreateWindowEx here.

link|improve this answer
feedback

A splash screen is typically just a modeless dialog with a static picture control covering its surface, or even just a normal window that loads and blits a bitmap to its client area. CodeProject has an example of the latter sort. It uses MFC, but that's a thin enough wrapper over the Win32 API that rewriting it to use Win32 directly should be fairly simple.

link|improve this answer
1  
Getting the threading right is the hard part. Looks like that was done properly in the linked project. – Hans Passant Mar 16 '10 at 11:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.