Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hai,
How can i set a variable in Qv10.
Hi,
You can set the variable by using LET statment
Hi,
Go to Settings, Variable Overview, and add a new variable. In the script, you can use both SET and LET the same way you did in v9:
SET vVariableName = 'Whatever'; // will store "Whatever"LET vVarableName2 = 1 + 1; // will store "2"
Hope that helps.