3
votes
How do I recognize command-line parameters in my Delphi program?
You may wish to consider the FindCmdLineSwitch from the SysUtils unit.
function FindCmdLineSwitch(const SwitchValue:string):Boolean;
function FindC …
