ProgramParameter()
Syntax
Parameter$ = ProgramParameter()Description
Gets the next parameter string that was passed to the executable when it was launched. Especially useful for console programs, where the user passes one or more parameter at the program start.
Example:MyProgram.exe MyText.txt /FAST "Special Mode"The first time than ProgramParameter() is called, it will return "MyText.txt", the second time "/FAST" and the third time "Special Mode". If no more parameter, it will return an empty string.
Supported OS
All