What is an Array?
A variable that can store more than one value
General format: Dim intReservations(300) as Integer
What are Array Properties?
Zero is the index used to reference a value in the first array element. The length of an array contains the number of elements in an array.
decManda(50) <- the array size is 51.
What are Parallel arrays
They store related data in two or more arrays.
What is an element
each individual item in an array that contains a value
Modal vs. Modeless
a modal form the user cannot switch focus between form objects until the first form is closed. a modeless form allows the user to switch the input focus at the same time.