Hi to all,
I have a panel, where my program is adding dynamic controls. Either I want to access these controls at runtime for changing their colors or texts.
the only way I know is:
Control [] myControls = myPanel.Controls.Find( name , true );
Here the problem is, my dynamic Controls have not any name ! Their name are " null ". If I'm trying name as a null value, it gives error. How can I achieve it ? Must I give every added control a name ?
Thanks.