Android Question Library and Process_Globals

MaFu

Well-Known Member
Licensed User
Longtime User
If i create a library with B4A (Project -> Compile To Library), in all library modules Process_Globals is visible. How can i avoid this? The "Private" modifier (Private Sub Process_Globals) are accepted but doesn't work.
 

somed3v3loper

Well-Known Member
Licensed User
Longtime User
Why do not you use private at variables declaration for variables you want to hide?
Private somevariable as sometype
 
Upvote 0

MaFu

Well-Known Member
Licensed User
Longtime User
I have no variables in Process_Globals yet.
I want to hide the sub Process_Globals itself, because it's visible at code completion. And B4A doesn't compile without this sub.
 
Upvote 0
Top