I remember VB5 (and all the horrors in it), but one thing I liked about it was that I could set an index on a control in the properties window in the designer. Are there any way to do something like this in WinForms, the WPF designer or XAML ?
Share
The control arrays from pre-.NET VB are not around anylonger. You can simulate it manually though, by declaring an array of the Control type in question, and populating it with the control instances when the form is created.