Hi
I would like to know how do .net developers manage a large window application with a large number of controls, such as textbox , button, groupbox
I have seen a number of people do it this way : declare the controls as an array and initialize them one by one at run time . In this way it is easy to manage those controls because they can be accessed by array index; but this solution seems to require very good understanding of control's attribute such as its location, font etc. This could be a difficult task if the project is passed on to a less experienced developer and add changes to it.
How do you deal with it
Thanks,