Search code examples
c++cwindowsuser-interfacesplash-screen

Splash screen in Windows


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


Solution

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