devxlogo

Clear Form’s Controls With Quick Loop

Clear Form’s Controls With Quick Loop

This code allows you to set a form’s controls to a specific value. You can use it, for example, when you want to clear all textboxes in a form or when you want to uncheck all checkboxes:

 Public Sub Clear(frm As Form)	Dim ctl As Control	For Each ctl In frm		Select Case TypeName(ctl)			Case "TextBox"				ctl.Text = ""			Case "CheckBox"				ctl.Value = vbUnchecked			Case Else				' handle others as needed		End Select	Next ctlEnd Sub
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist