In VB6, when you copied a control multiple times, it would create a control index, based on the name of the first control, for example:
btnEnter(0)
btnEnter(1)
btnEnter(2)
btnEnter(3)
btnEnter(4)
etc
Has this feature been taken away from vb.net?
Printable View
In VB6, when you copied a control multiple times, it would create a control index, based on the name of the first control, for example:
btnEnter(0)
btnEnter(1)
btnEnter(2)
btnEnter(3)
btnEnter(4)
etc
Has this feature been taken away from vb.net?
That's correct. You're talking about control arrays in VB6, which are no longer supported in VB.Net. There are a couple work arounds. Look in the Help index for control arrays, then select changes to vb in the results window.
Thanks
Looks like I can refer to the vb6 style control array indexes using the tabindex in vb.net
Thanks again :)