GAPVelocity.ai
In Visual Basic 6.0 the ReDim statement can be used to declare dynamic array variables, or even change the types of the elements contained in an array. In VB.NET the ReDim statement cannot be used to change the type of a preexisting variable.
For more information visit:
Dim v As Variant Dim w(3) As Integer w(2) = 3 v = w ReDim v(5) As Byte
Dim w(3) As Integer w(2) = 3 Dim v(5) As Integer