Hi all
Is there a limit to global vars in a module?
I have a module (it is named c as it holds only constants) that has 111 global vars in it. If I add number 112:
When I try to access it it is set at 0.
If in my app startup I do:
It works fine. Strangeness....
Is there a limit to global vars in a module?
I have a module (it is named c as it holds only constants) that has 111 global vars in it. If I add number 112:
B4X:
Public puDefaultWidth As Int = 500dip
When I try to access it it is set at 0.
If in my app startup I do:
B4X:
c.puDefaultWidth = 500dip
It works fine. Strangeness....