CalcIt Commands

EXECAPP(AppName, WaitAppFinish=true, Parameters=[])

Executes a Windows application. CalcIt can wait until the application finishes.

  • AppName. Application name e.g. 'notepad'. If .EXE is omitted then it is appended automatically. Also the application, if not found in the current directory, it is searched in Windows search path.
  • WaitAppFinish. Optional. If true then the CalcIt code stops its execution until the executed application finishes.
  • Parameters. Optional. Command line parameters passed to the executed application. This parameter is an Array Expression.

e.g.

ExecApp('notepad.exe',,['c:\tmp.txt']);

Go Back