I
Ian
I have 5 labels on my form called Label1 to Label5.
I wish to populate each label with data stored in a simple string array.
e.g.
For i = 0 to 4
Label(i).text = array(i)
Next i
In VB6 I simply used a control array, but in .Net all controls require a
unique name. How would I write the above in .Net?
Ian
I wish to populate each label with data stored in a simple string array.
e.g.
For i = 0 to 4
Label(i).text = array(i)
Next i
In VB6 I simply used a control array, but in .Net all controls require a
unique name. How would I write the above in .Net?
Ian