Hi to all,
it's possible to declare an array (ex. Dim MyArr () As String) within "Process Global" and than size and use it in other Activities?
Example
*** Activity Main ***
Sub Process_Globals
Dim MyArr () As String
end sub
*** Activity MyActivity ***
sub MySub ()
Dim MyArr (10)
MyArr (0) = "value"
end sub
My target is to share the array with all the activities of my app.
it's possible to declare an array (ex. Dim MyArr () As String) within "Process Global" and than size and use it in other Activities?
Example
*** Activity Main ***
Sub Process_Globals
Dim MyArr () As String
end sub
*** Activity MyActivity ***
sub MySub ()
Dim MyArr (10)
MyArr (0) = "value"
end sub
My target is to share the array with all the activities of my app.