BYTEINSIGHT
GAPVelocity AI Studio helps you move from outdated tech stacks to the latest desktop, web, and cloud platforms—smarter, faster, and with less risk.
Choose a platform to see migration options:
Our comprehensive approach to application modernization, from assessment to production deployment.
Transformation Services
Not Sure Where to Start?
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