Hallo,
hab mal Luckie's Code genommen der auch so seinen Zweck erfüllt.
Danke nochmal.
Allerdings habe ich jetzt probiert das zu automatisieren, dazu habe ich testweise folgende funktion auf einen Button gelegt:
Delphi-Quellcode:
A := Listbox1.Count;
for I:=0 to A do
if Listbox1.Items.Strings[I] = 'test.exe' then
KillProcess(GetProcessID(Listbox1.Items.Strings[Listbox1.ItemIndex]))
else
end;
Allerdings hab ich das Problem das bevor er zum killen des Prozesses kommt er die Message Item Index Out auf Bounds.
Weiss jemand wo da der Fehler is ?
Gruß
Budda