JonSea
Fair enough.
Yes, you are on to it.
Perhaps you can try something like this:
Code:
For ii = 1 to 10
lblName(ii - 1) = aaTop10(ii, 1)
lblAmount(ii - 1)= aaTop10(ii, 2)
lblDate(ii - 1)= aaTop10(ii, 3)
Next ii
I am assuming that you populated aaTop10
as I coded it earlier, and that Label control
arrays go from 0 to 9, hence the use of (ii - 1).
Change code as needed if I assumed incorrectly.
Plus, some formatting may be needed.
EDIT
Ha ! Don't feel so bad. It's kinda new to me too.
I just had to check it out myownself 
Either of these accomplish the same thing:
- lblName(ii - 1) = aaTop10(ii, 1)
- lblName(ii - 1).Caption = aaTop10(ii, 1)
Spoo