02-28-2012, 05:17 PM
Read QM Help, "Variable storage and scope" topic.
Global variables last between functions. But don't use where not necessary. For example, when calling a function, you can pass variables as arguments. Or use thread variables.
Global variables last between functions. But don't use where not necessary. For example, when calling a function, you can pass variables as arguments. Or use thread variables.