如果要监控的程序也是你的程序,可以发送广播消息先知其它程序。
如果用枚举进程的方法可以以下进行:
procedure TForm1.Button1Click(Sender: TObject);
var
FSnapshotHandle:THandle;
FProcessEntry32:TProcessEntry32;
Ret : BOOL;
ProcessID : integer;
s:string;
begin
FSnapshotHandle:=CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,0);
FProcessEntry32.dwSize:=Sizeof(FProcessEntry32);
Ret:=Process32First(FSnapshotHandle,FProcessEntry32);
Memo1.clear;
while Ret do
begin
Memo1.lines.add(FProcessEntry32.szExeFile);
s:=ExtractFileName(FProcessEntry32.szExeFile);
/// FProcessEntry32.szExeFile 是执行程序文件名(含路径)。s不含路径。
if s='......' then
begin
........
end;
Ret:=Process32Next(FSnapshotHandle,FProcessEntry32);
end;
end;