T
Thonglao Rud
I'm trying to clear all textbox on the form.
foreach (Control c in this.Controls)
{
//if (c.GetType() == typeof(TextBox))
if (c is TextBox)
{
// Found it
c.Text = "";
MessageBox.Show(c.Name.ToString());
}
}
However, this code can not effect with TextBox that inside groupbox in my form.
What is wrong?
foreach (Control c in this.Controls)
{
//if (c.GetType() == typeof(TextBox))
if (c is TextBox)
{
// Found it
c.Text = "";
MessageBox.Show(c.Name.ToString());
}
}
However, this code can not effect with TextBox that inside groupbox in my form.
What is wrong?