If you are considering taking parameters when starting your app, you can take it by ParamCount and ParamStr. |
Below example shows the application name
ShowMessage( ParamStr(0) ); |
Below example shows the total parameters received
var
j:integer;
begin
for j := 1 to ParamCount do
ShowMessage(ParamStr(j)) ;
end; |