Delphi取所有窗口句柄
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Delphi取所有窗口句柄相关的知识,希望对你有一定的参考价值。
有什么办法用Delphi取所有窗口的句柄啊?最好加上详细备注
定义一个全局变量var
handlelist: tstringlist;
procedure TForm1.Button1Click(Sender: TObject);
function GetProcessExePath(h: HWND): BOOL; stdcall;
function getfilename(str: string): string;
begin
result := UpperCase(ExtractFileName(str));
end;
var
pid: Cardinal;
pHandle: THandle;
buf: array[0..MAX_PATH] of Char;
str: string;
begin
GetWindowThreadProcessId(h, @pid);
pHandle := OpenProcess(PROCESS_ALL_ACCESS, False, pid);
GetModuleFileNameEx(pHandle, 0, buf, Length(buf));
CloseHandle(pHandle);
str := StrPas(buf);
handlelist.Add(IntTostr(h)+str);//句柄加文件路径
Result := True;
end;
var
i: integer;
begin
if form1.OpenDialog1.Execute then
begin
Edit1.Text := OpenDialog1.FileName;
EnumWindows(@getprocessexepath, 0);
for i := 0 to handlelist.count - 1 do
listbox1.items.add(handlelist.string[i]);
end;
end; 参考技术A enumwindows
这个api函数了
你看一下msdn吧。上面有一个C++的例子
以上是关于Delphi取所有窗口句柄的主要内容,如果未能解决你的问题,请参考以下文章