
-----------------------------------
JayLo
Tue Jun 03, 2003 6:08 pm

need a way to output a variable value from a module
-----------------------------------
how do to it: need a way to output a variable value from a module?

-----------------------------------
Tony
Tue Jun 03, 2003 6:56 pm


-----------------------------------
well you could export the variable.

module name
 export procedureName, variableName...
...


or if for some reason you cant do that, you can export a function that returns the value of the variable.

-----------------------------------
JayLo
Tue Jun 03, 2003 9:41 pm


-----------------------------------
right. thanks a bunch.
