<var_load> Loads variable value from a file. (The value was previously saved using <var_save> command.)
Command Tree: | Variables \ Load Variable From File | ||||||||
. | |||||||||
Syntax: | <var_load>("Variable",
"File")
|
||||||||
. | |||||||||
. | |||||||||
Example: | <#> This macro
demonstrates use of <var_load> and <var_save> commands <#> <commands_only_on> <varset>("vName=John","") <var_save>("vName","c:\_myvars.dat") <varset>("vName=Michael","") <var_load>("vName","c:\_myvars.dat") <msg>(100,100,"vName","Message",1) |