Visual Basic Multidimensional Arrays

From Techotopia
Revision as of 19:43, 3 August 2007 by Neil (Talk | contribs) (New page: A multidimensional Visual Basic array is nothing more than an array in which each array element is itself an array. A multidimensional array can, therefore, be thought of as a table, where...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

A multidimensional Visual Basic array is nothing more than an array in which each array element is itself an array. A multidimensional array can, therefore, be thought of as a table, where each element in the parent array represents a row of the table and the elements of each child array represent the columns of the row. In this chapter we will cover the creation and use of multidimentional arrays in Visual Basic. To learn how to use single dimentional arrays read Visual Basic Arrays.