I created a windows form with several buttons, text boxes, combo boxes, etc. At some point during execution, I disable all of them as follows:
Control01.Enabled = false; Control02.Enabled = false; Control03.Enabled = false; // ... Control10.Enabled = false; How can I automate this?