Hab schon,
hab einfach eine funktion in die prozedur eingebaut:
Delphi-Quellcode:
function Param(const Params: array of string; Idx: Integer): string;
begin
if (Idx > -1) and (Idx <= High(Params)) then
Result := Params[Idx]
else Result := '';
end;
mfg, und danke nochmal.