Hi

I am using Visual Basic 2005.

I have a stream of data which I want to set over 20 label.text properties.

Instead of setting the data individually ie label1.text = ....label2.text =.....
is there a away to paramaterise label.text for numerous labels?

ie

for i=1 to 20
label(i).text =
next

I know the above does not work but is there anything...