I have a list of my textbox names, and I want to find a control by name. How is it possible?
You can use:
f.Controls[name];
Where f is your form variable. That gives you the control with name name.
f
name