In VB6.0, when create 3 textboxes (or more) and you give them the same name, its create an control array. But in .NET, you CANT do that, so how do we create control array ..........
PLEASE HELP !!!!!!!!!
Printable View
In VB6.0, when create 3 textboxes (or more) and you give them the same name, its create an control array. But in .NET, you CANT do that, so how do we create control array ..........
PLEASE HELP !!!!!!!!!
control arrays are pretty much gone...while you can still do something similar.. it is just a waste of resources as when you create a control it is added to the forms control collection..so why use up more mem for yet another 'collection'?
You could assign multiple controls to the same event with the Handles statement. This is one feature MS could have left alone.
thank you for all your esponse guys, I appreciate :)