Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Library: Windows API / MS.NET Framework API (https://www.delphipraxis.net/20-library-windows-api-ms-net-framework-api/)
-   -   Delphi Ein beliebiges Fenster schließen (https://www.delphipraxis.net/8112-ein-beliebiges-fenster-schliessen.html)

CalganX 28. Aug 2003 21:23


Ein beliebiges Fenster schließen
 
Um ein beliebiges Fenster zu schließen, gibt es verschiedene Möglichkeit.

Die Methode, die bei mir bisher am Besten funktioniert hat ist folgende:
Delphi-Quellcode:
const
  IDS_WNDTITLE = 'about:blank - Microsoft Internet Explorer'; // Beschriftung des Fensters.
{...}
var
  hWnd: DWORD;
{...}
hWnd := FindWindow(nil, IDS_WNDTITLE);
if hWnd <> 0 then
  SendMessage(hWnd, WM_SYSCOMMAND, SC_CLOSE, 0)
else
  ShowMessage('Window does not exist.');
Chris


Alle Zeitangaben in WEZ +1. Es ist jetzt 14:36 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz