I wanted to use multible lables with the index option
like in VB6, but the label doesn't have that property.
What is the best way to do somethin like that?
Code:Form_Load
For I=0 To lblTest.Ubound
lblTest(I).Caption="Test" & I"
Next I
For I=0 To lblTest2.Ubound
lblTest2(I).Caption="Another" & I
Next I
