How do i declare an array of x elements in Visual Basic? In Java an array to hold five elements would be declared as int[] i = new int[5]; and indexed as 0 through 4. But if i remember correctly arent arrays declared different in Visual Basic whereas Dim i(4) as Integer would be equivalent to the previous declaration?


Reply With Quote
