Example: lr.save_long and lr.eval_long
In the following example, save_long createsparametertwenty_two
and eval_long saves the value to a long variable and for outputs the value using output_message.
Dim lVal as long lr.save_long "twenty_two", 22 lVal = lr.eval_long ("<twenty_two>") lr.output_message "The value of variable lVal is " _ + Cstr(lVal) lr.output_message "The value of parameter twenty_two is " _ + Cstr(lr.eval_long ("<twenty_two>"))