How can I display a splash screen using C or C++ in Windows? What libraries or Windows components would be applicable?
+4
A:
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.
Jerry Coffin
2010-03-16 06:14:54
Getting the threading right is the hard part. Looks like that was done properly in the linked project.
Hans Passant
2010-03-16 11:06:02