May 2004
Intermediate to advanced
576 pages
14h 43m
English
IN THIS CHAPTER
An array is a type of variable that can be used to hold more than one piece of data. For example, if you had to work with the name and address of a client, your first thought might be to assign one variable for the name and another for the address of the client. Instead, consider using an array, which can hold both pieces of information—and not for just one client, but for hundreds.
Declare an array by adding parentheses after the array name. The parentheses contain the number of elements in the array:
Dim myArray (2)
This creates an ...
Read now
Unlock full access