Page 1 of 1

[Implemented] Defined(#CONST, ...) not Defined(CONST, ...)

Posted: Sat Feb 25, 2006 12:35 pm
by remi_meier
As it is, the '#' belongs to the name of the constant and I even dont know
how to use defined() with strings like s$ (I think it's a bug)!

Code: Select all

s.s = "hallo"
t$ = "hallo"
Debug Defined(s, #PB_Variable)
Debug Defined(t, #PB_Variable)
Debug Defined(t$, #PB_Variable)
Cannot see if t$ is defined!

But perhaps I just don't see the reason for not using '#', then I would be
glad if somebody could tell me :wink: