Go back to Richel Bilderbeek's homepage.

Go back to Richel Bilderbeek's C++ page.

 

 

 

(C++) CloseForegroundWindow

 

Windows code snippet to minimizes the foreground window.

 

  • View the code of 'CloseForegroundWindow' in plain text

     

     

    #include <windows.h>

     

    //From http://www.richelbilderbeek.nl/CppCloseForegroundWindow.htm

    void CloseForegroundWindow()

    {

    const HWND handle = GetForegroundWindow();

    CloseWindow(handle);

    }

     

     

     

    Go back to Richel Bilderbeek's C++ page.

    Go back to Richel Bilderbeek's homepage.