Action |
Executes a piece of KiXtart script code.
Syntax |
EXECUTE (script code)
Parameter |
Script code
A string expression representing the code to execute.
Returns |
The exitcode of the executed script.
Examples |
$Rc = Execute( '? "This
is a demo of the Execute() function"' )
$Rc = Execute( '$$X =
10' ) ; note the extra '$'
$Rc = Execute( '$$X = ' + @USERID )