首页 > 技术文章 > FindWindowEx

xe2011 2014-01-21 20:28 原文

 

procedure CloseGameSver();
var
  H1, h2: HWND;
begin
  H1 := FindWindow('TForm1', nil);
  h2 := FindWindowEx(H1, 0, 'ConsoleWindowClass', nil);
  // ShowMessage(Inttostr(h2));
  SendMessage(h2, WM_CLOSE, 0, 0);
end;

 

推荐阅读