Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
System.Collections.ArrayList arlTextBoxes = new ArrayList();
arlTextBoxes.Add(TextBox1);
arlTextBoxes.Add(TextBox2);
arlTextBoxes.Add(TextBox3);
...
foreach (TextBox txt in arl) {
//Your loop code here
}
foreach (Control ctl in this.Controls) {
if (ctl is TextBox) {
TextBox txt = (TextBox) ctl;
//Your loop code here
}
}