本文整理自网络,侵删。
uses TLhelp32function GetProcessNameById(const AID: Integer): String;var h:thandle; f:boolean; lppe:tprocessentry32;begin Result := ''; h := CreateToolhelp32Snapshot(TH32cs_SnapProcess, 0); lppe.dwSize := sizeof(lppe); f := Process32First(h, lppe); while integer(f) <> 0 do begin if Integer(lppe.th32ProcessID) = AID then begin Result:= StrPas(lppe.szExeFile); break; end; f := Process32Next(h, lppe); end;end;
相关阅读 >>
Delphi 如何让 tgpimage 直接从流中加载图片?
Delphi datetime,date,time tdatetimepicker
Delphi webbrowser选中文本操作 设置webbrowser的内容
更多相关阅读请进入《Delphi》频道 >>