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:
for i=0 to ubound(array) label(i).text=array(i) next
Desired Results:
label1.text=43
label2.text=64
label3.text=87
etc.....
Cheers,
Bebandit




Reply With Quote