Code: Alles auswählen
Application.Params[i];
// macht daselbe wie
ParamStr(0);
Code: Alles auswählen
function TCustomApplication.GetParams(Index: Integer): String;
begin
Result := ParamStr(Index);
end;
Code: Alles auswählen
Application.Params[i];
// macht daselbe wie
ParamStr(0);
Code: Alles auswählen
function TCustomApplication.GetParams(Index: Integer): String;
begin
Result := ParamStr(Index);
end;