I have ten group boxes in a WinForm. Each group box contains 10 text boxes, and I have defined each TextBox name. How can I get each text box usin
WinForm
TextBox
try following code,
Control.ControlCollection coll = this.Controls; foreach(Control c in coll) { if(c != null) }