This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Retrieve the current set of chars used by OS_GetCommand... functions to identify command line parameters and set a new one
Syntax
s = OS_CommandsSetSep (NewSeparatorChars)
Returns
String.
The previous sequence of chars used to identify command line parameters.
Parameters
Name |
Type |
Optional |
Meaning |
NewSeparatorChars |
String |
No |
The new set of chars to be used by OS_GetCommand... functions. |
Remarks
Restrictions
Any of the following chars are used as default command separators: " =- (double quote, space, equal, minus).
See also
Examples
USES "OS"
'---To set separators to any of the following: space + double quote + '-'
'---use:
OS_CommandsSetSep(" " & $DQ & "-")