Also die Funktion Umwandler sieht so aus:
Delphi-Quellcode:
function Umwandler(pDateiname: Pointer): Integer;
var
AProcess: TProcess;
begin
AProcess := TProcess.Create(nil);
try
AProcess.Executable := ExtractFilePath(application.ExeName)+'Umwandler.exe';
AProcess.Parameters.Add(PThreadParams(pDateiname)^.Dat);
AProcess.Options := AProcess.Options + [poWaitOnExit, poNoConsole];
AProcess.Execute;
finally
AProcess.Free;
end;
end;
Ob es TProcess in Delphi gibt weiß ich nicht genau.
Danke für die Antworten.