Class System : shellExecute Method
void shellExecute( String strEXEName, String strParameters ) |
Summary
Run a program or open a file using the program associated with the file type.
Parameters
Parameter | Description |
String strEXEName |
Name of the EXE you wish to run |
String strParameters |
Parameters for the EXE, or the name of the file you wish to open |
|
|
|
Returns
none
Examples
To open a file with a given command; system.shellExecute( "notepad.exe", "c:\file.txt" ); | To open a file without knowing the command name; system.shellExecute( "", "http://www.digiguide.com/"); |
See Also
System : isInternetAvailable
Requirements
Build 1064
|