Error processing SSI file
Error processing SSI file

Home » Development Area » DigiGuide Listings Grabber » API Index » Class: System » shellExecute Method

Class System : shellExecute Method


void shellExecute( String exeName, String parameters, [ Boolean wait ] )

Summary

Run a program or open a file using the program associated with the file type.


Parameters

ParameterDescription
String exeName Name of the EXE you wish to run
String parameters Parameters for the EXE, or the name of the file you wish to open
Boolean wait [optional] Set to true if you wish the script to wait for the application to finish before continuing. Omitting this parameter is the same as setting it to false in that the script will return immediately the application is started.


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/");


Requirements

Build Build 1

(Last updated: February 13, 2020 12:43:31)

Error processing SSI file