- Home
·
- Libraries
·
- A simple Clear All Controls on FormJust 4 Lines
A simple Clear All Controls on FormJust 4 Lines
Need to perform the same action on multiple controls in your form? Then this simple code might just be for you..
This particular example will show you the most efficient way to clear every text box on a form.
This method can be especially useful if you're adding and removing controls during the development of a project.
Rate A simple Clear All Controls on FormJust 4 Lines
(31(31 Vote))
I guessed there must be a better way than hard-coding each control name, but I searched PSC and couldn't find anything to do the job. So after I worked it out I felt this simple method should be added to PSC so those who don't already know how to do it can benefit too.
Dim Control As Control
For Each Control In Me
If TypeOf Control Is TextBox Then Control.Text = ""
Next Control
Please vote if you learnt something useful.
Cor!™
A simple Clear All Controls on FormJust 4 Lines Comments
No comments yet — be the first to post one!
Post a Comment