My textBoxes Is contained on panel3 and panel3 is above on panel2
I want validate textboxes my code is
public void ClearTextBoxes(Control.ControlCollection cc)
{
foreach (Control ctrl in cc)
{
TextBox tb = ctrl as TextBox;
if (tb == null)
messagebox.show("Empty Textbox Found");
}
}
but It Throws an error -"Object refference not set an instance of an object"
Murli JadhavPosted Jul 7, 2017, 12:48 PM
Manikandan Murugesan It Is Not Work For Me Because all of my textboxes is on panels
Manikandan MurugesanPosted Jul 7, 2017, 11:39 AM