Hi,
I'm stuck with a silly problem and would appreciate some help
I have a variable that is defined in starter.Process_Globals
I want to set the dimensions of this variable in a sub.
However, this code gives me the error
How can I redim a process_global in a sub?
Thanks a lot
Johannes
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