在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
转载:http://blog.csdn.net/chinazhd/article/details/6566535 本文主要跟大家介绍Delphi中获取其它进程的窗口句柄,在Delphi中获取其它进程的窗口句柄,绝大部分人首先想到的会使用:FindWindow或者用GetWindow来遍历查找,如: handle := FindWindow(nil,PChar('窗口的标题')); 或者: procedure TForm1.Button1Click(Sender: TObject); var hCurrentWindow: HWnd; WndText:String; begin hCurrentWindow := GetWindow(Handle, GW_HWNDFIRST); while hCurrentWindow <> 0 do begin WndText:=GetWndText(hCurrentWindow); if UpperCase(WndText)='窗口的标题' then begin ... ... end; hCurrentWindow:=GetWindow(hCurrentWindow, GW_HWNDNEXT); end; end;
因为目前网络上绝大部分的代码都是介绍用这两种方法取得其它进程的窗口句柄。虽这两种方法都可以达到查找其它进程的窗口句柄的目的,但本人认为这两都方法存在较大的弊端。因为这两种方法都是根据其它进程的标题来查找的,如果其它进程的标题在运行时不断的发生变化,那么这两种方法就无法没办法用了。
今天给大家介绍第三种通过进程的文件名来查找窗口句柄。首先通过进程快照得到要查找的进程ID(ProcessId),其次,再跟据ProcessId获取进程的窗口句柄。以下为本文章的代码:
uses TLHelp32; procedure TForm1.Button1Click(Sender: TObject); if(ProcessName = '要找的应用程序名.exe') then begin ...
//跟据ProcessId获取进程的窗口句柄 function TForm1.GetHWndByPID(const hPID: THandle): THandle; function EnumWindowsProc(Wnd: DWORD; var EI: TEnumInfo): Bool; stdcall; if not Result then EI.HWND := WND; function FindMainWindow(PID: DWORD): DWORD;
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论