Android Question Redim Process_Global in module

jo1234

Active Member
Licensed User
Longtime User
Hi,

I'm stuck with a silly problem and would appreciate some help :)
I have a variable that is defined in starter.Process_Globals

B4X:
Sub Process_Globals
Public boArray() As Boolean

I want to set the dimensions of this variable in a sub.
B4X:
Dim Starter.boArray(10) As Boolean

However, this code gives me the error
B4X:
Unknown type: boarray. Are you missing a library reference?

How can I redim a process_global in a sub?

Thanks a lot
Johannes
 
Top