G
* "Tim Wilson said:You can create this functionality yourself by running through the Controls
collection of the Form:
foreach (Control ctrl in this.Controls)
{
if (ctrl is TextBox)
{
((TextBox)ctrl).Clear();
}
}
* "Tim Wilson said:True. Recursion is the way to go to clear every textbox directly or
indirectly on the form. This was just a simple piece of code I threw
together to demo the basic understanding of how to locate and clear
textbox's dynamically. Thanks for pointing this out as I should have in my
original post