G Guest Nov 8, 2005 #1 What is the best way to define a variable in one module and have it be held constant in all other modules, fucntions, etc....? Nick M.
What is the best way to define a variable in one module and have it be held constant in all other modules, fucntions, etc....? Nick M.
G Guest Nov 8, 2005 #2 Define it as Public in the declarations section (top; before any subs or functions) of the module it is in.
Define it as Public in the declarations section (top; before any subs or functions) of the module it is in.
G Guest Nov 8, 2005 #3 that did it. Thanks! K Dales said: Define it as Public in the declarations section (top; before any subs or functions) of the module it is in. Click to expand...
that did it. Thanks! K Dales said: Define it as Public in the declarations section (top; before any subs or functions) of the module it is in. Click to expand...