donsrini
30th October 2002, 02:56
Hi
I am trying to import a variable from one program to another, and when the variable is decalred in Caps, the import for some reason does not bring the correct value...
This is what I mean:
In my 1st session:
extern domain tcbool FIND.LINES
FIND.LINES = TRUE
In my 2nd session:
extern domain tcbool FIND.LINES
import("FIND.LINES", FIND.LINES)
The value for FIND.LINES in 2nd session is 0 (meaning FALSE)
when I change the variable name from CAPs to Small, it works fine.
So why is import so partial to variables declared in CAPS?
I am trying to import a variable from one program to another, and when the variable is decalred in Caps, the import for some reason does not bring the correct value...
This is what I mean:
In my 1st session:
extern domain tcbool FIND.LINES
FIND.LINES = TRUE
In my 2nd session:
extern domain tcbool FIND.LINES
import("FIND.LINES", FIND.LINES)
The value for FIND.LINES in 2nd session is 0 (meaning FALSE)
when I change the variable name from CAPs to Small, it works fine.
So why is import so partial to variables declared in CAPS?