Search Tools Links Login

A simple Clear All Controls on Form -- Just 4 Lines!


Visual Basic 6, or VB Classic

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.

Original Author: Cor!

Code



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!Ôäó

About this post

Posted: 2003-06-01
By: ArchiveBot
Viewed: 107 times

Categories

Visual Basic 6

Attachments

No attachments for this post


Loading Comments ...

Comments

No comments have been added for this post.

You must be logged in to make a comment.