Execute()

<< Click to Display Table of Contents >>

Navigation:  Explain™ Control Language  > Library Routines > Run Control functions >

Execute()

Description

Launch another Explain™ script from within Explain. As soon as the other script is launched, the parent script continues its execution.

 

Any number of Explain primitive types such as INTEGERs, STRINGs, and REALs can be passed using this function. Objects, however, cannot be passed from one script to another.

 

Type

REGULAR FUNCTION

 

Usage

Execute("Filename", Param1, Param2, . . ., ParamN)

 

Filename

STRING

A valid path to an *.exp file.

ParamN

INT, STRING, REAL

Any valid Explain primitive which you want to be passed to the launching script. Any number of parameters may be passed.

 

Related Topics