Declaring array size

Saj

Active Member
Licensed User
Is it possible to re-size an array after the it has been declared as '0' size in Globals? E.g:

Sub Globals
Dim Type(x,y)reducedArr (0) As Int32
End Sub

Sub Calc
reducedArr () = Array (100?)
'can an array size of 100 be declared here without assigning any values to the array elements?
End
 
Top