In versions of VB prior to .net, I was able to create in code an array of
controls, such as
for i = 1 to 10
Load Me.lblTest(i)
Me.lblTest(i).t op = me.lblTest(i-1).top - me.lblTest(i-1).height - 200
Me.lblTest(i).v isible = true
next i
where lblTest(0) already exists on the form.
How do I do this in VB.net
Thanks
controls, such as
for i = 1 to 10
Load Me.lblTest(i)
Me.lblTest(i).t op = me.lblTest(i-1).top - me.lblTest(i-1).height - 200
Me.lblTest(i).v isible = true
next i
where lblTest(0) already exists on the form.
How do I do this in VB.net
Thanks
Comment