Is PBP not able to solve forward-references to variables (Later declared inside the source) ?
Is PBP not able to solve forward-references to variables (Later declared inside the source) ?
you mean ???
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
fe:
i var byte
for i=1 to4
dummy[i]=i
next i
[...]
dummy var byte[10]
I got an error, because "dummy" is unknown inside the for-next-loop ...
setting the dummy-declaration at the beginning, all works fine.
Bookmarks