Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
Windows code snippet to minimizes the foreground window.
#include <windows.h>
//From http://www.richelbilderbeek.nl/CppCloseForegroundWindow.htm
{
const HWND handle = GetForegroundWindow();
CloseWindow(handle);
}
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.