1. Willkommen in der
DP
2. Bitte verwende doch die Delphi-Tags: [DeIphi] CODE [/DeIphi]
3. Zu deiner Frage: Du musst deine Funktion nur etwas umschreiben:
Delphi-Quellcode:
function TaskRunning(ExeFileName: string): Boolean;
const
PROCESS_TERMINATE = $0001;
var
ContinueLoop: BOOL;
FSnapshotHandle: THandle;
FProcessEntry32: TProcessEntry32;
begin
Result := false;
FSnapshotHandle := CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
FProcessEntry32.dwSize := SizeOf(FProcessEntry32);
ContinueLoop := Process32First(FSnapshotHandle, FProcessEntry32);
while ContinueLoop do
begin
if ((UpperCase(ExtractFileName(FProcessEntry32.szExeFile)) = UpperCase(ExeFileName))
or (UpperCase(FProcessEntry32.szExeFile) = UpperCase(ExeFileName)))
then Result := true;
ContinueLoop := Process32Next(FSnapshotHandle, FProcessEntry32);
end;
CloseHandle(FSnapshotHandle);
end;
(ungetestet) welche
Unit hast du denn eingebunden? Ich hab tprocessentry32 nich...
die Codeformatierung ist übrigens grauenhaft