ARRAYS
Most VB programmers are familiar with the array (figure 1). An array can be single or multidimensional, which means it can have rows and columns. While the array is the most commonly used data structure, it 's not the best choice for at least two reasons. The first is data access. To find something within the array, you have to know exactly what you want. If you knew that, you wouldn 't have to look, would you? To search for an item, you must iterate through the array.
[FIGURE 1 OMITTED]
The second reason is that the array must be dimensioned to a known limit. Once set, it 's not easy to add an item after that limit is reached. For example, if you have a list of four people, you can 't add a fifth person until you resize the array using ReDim or ReDim Preserve. ReDim resizes the array and clears any existing values, while ReDim Preserve resizes and keeps any existing values. Also, the upper limit of the array can 't be a dynamic variable. An exception to the dimensioning rule is using an array with a command such as Split (figure 2).
[FIGURE 2 OMITTED]
If the array isn 't dimensioned, the Split command dimensions and fills the array on the fly. Arrays are zero-based in VBA (and in VB, although you can use the Option Base statement to change it). In most cases, the array is limited to a single data type.
COLLECTIONS
A collection (figure 3) is usually a better choice for a data structure. All AutoCAD programmers have used collections whether they realize it or not, because AutoCAD uses them. Layers and blocks are two of the most commonly accessed collections within AutoCAD. A collection differs from an array in
Bibliography: for "Data structures: VB and VBA offer two options: arrays and collections" Mike Tuersley "Data structures: VB and VBA offer two options: arrays and collections". CADalyst. August 2004. FindArticles.com. 30 Oct. 2007. http://findarticles.com/p/articles/mi_m0BLL/is_8_21/ai_n9537860Continued from page 1. Previous - 1 - 2