Arrays

An array is a data structure that can store a number of pieces of data of the same type. While a normal variable can only store one piece of data at a time an array can store more than one.

Array need to be setup before they are used in VB, you also need to specify the size of the array in advance. i.e. DIM LastName(10) as String would create a ten item array of type String.