Execute

From NSB App Studio
Jump to navigation Jump to search

Execute(string)

Description

Execute executes an expression or file as if it were code substituted in the program. The required parameter, string, can be either a string expression or the name of a file containing statements that is executed. If multiple statements are to be executed, separate them with a carriage return (vbCRLF). The code can access and modify all variables in the current running program.

The code in the string is evaluated as JavaScript code. See the TechNote 04, "The role of JavaScript, HTML5 and WebKit".

Example

// Eval execute a string as a SUB

var x;
x = 5;
eval("NSB.PRINT(x * 10)");
eval("x = x * 10");
NSB.Print(x);

Rem Execute execute a string as a SUB
Dim x
x = 5
Execute("PRINT x * 10")
Execute("x = x * 10")
Print x

Output

50
50

Related Items

Eval