Checkout our demo site to practice selenium https://magento.softwaretestingboard.com/

0 like 0 dislike
362 views
in Programming by
retagged by
I am creating a windows form applicaiton. I have a scenario where I need to clear all text boxes. Is there any easy way to do that? Rather than doing it one by one?

1 Answer

1 like 0 dislike
by The go-to Tester (181 points)
selected by
 
Best answer
This function worked for me.

 

private void ClearTextBoxes()
        {
            Action<Control.ControlCollection> func = null;

            func = (controls) =>
            {
                foreach (Control control in controls)
                    if (control is TextBox)
                        (control as TextBox).Clear();
                    else
                        func(control.Controls);
            };

            func(Controls);
        }


This site is for software testing professionals, where you can ask all your questions and get answers from 1300+ masters of the profession. Click here to submit yours now!

1.4k questions

1.6k answers

866 comments

1.9k users

...