Go back to Richel Bilderbeek's homepage.

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

 

 

 

 

 

(C++) CloseForegroundWindow

 

CloseForegroundWindow us a Windows code snippet to minimize the foreground window.

 

#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.

 

Valid XHTML 1.0 Strict

This page has been created by the tool CodeToHtml