I have an array full of values. I want to assign each value to a label.

Is there any way you could do something like this:
VB Code:
  1. for i=0 to ubound(array)
  2. label(i).text=array(i)
  3. next

Desired Results:
label1.text=43
label2.text=64
label3.text=87
etc.....


Cheers,
Bebandit