>> Yes I did - sort of. I made one label postioned and sized it the way I
>> wanted,
[quoted text clipped - 9 lines]
> 1. changing the name of each label, so they all have different names, and
> 2. setting the Index property of each label to blank
>>FYI, you can also un-array-ify the labels by
>> 1. changing the name of each label, so they all have different names, and
[quoted text clipped - 3 lines]
> not
> blank, but they were all different. You did say 1 *and* 2, not 1 *or* 2.
Yes, that's right. If you had, for instance, LabelA(0), LabelB(1), and
LabelC(2), you would have three separate control arrays, each with one element
in them. To set their captions, you would have to type LabelB(1).Caption =
"boo", etc.
The control array is not a true array, it is more of a collection with integer
keys. Thus you could have LabelD(1) and LabelD(3), a control array with two
elements, whose indexes were not sequential. However, for reasons of sanity,
most VB programmers use control arrays with sequentially numbered elements,
starting at 0.