Hi there,
i have this realy simple code:
`Add a name for each trackable variable
if debugText(i).variable$ = "customVar"
debugText(i).value$ = str$(customVar)
endif
if debugText(i).variable$ = "this"
debugText(i).value$ = str$(this)
endif
if debugText(i).variable$ = "var"
debugText(i).value$ = str$(var)
endif
I wonder if there is some workaround.I'm trying to enlist a bunch of variables from a console to a file with their respective properties and later use the data from the file to find exceptions.As you can see in first of each set of lines there is manually written the real name of the variable in plain string and in the second the variable is pointed.It's very ineffective for a large ammount of variables.Is there some kind of pointer to a variable?
Coding is My Kung Fu!
And My Kung Fu is better than Yours!