void System(string)
Return Type: void
Parameters: string Command
Description:
The System function is used to start new applications or processes. Operating
system commands, such as 'dir', generally will not work (see Run for these
commands). The function does not wait for the command to finish executing
nor does it wait for an application to exit.
Example
Code |
# This
will start the windows Notepad application and
# continue running the script.
System(“C:\\Windows\\System32\\Notepad.exe”); |
See Also: Run