ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   uncheck checkboxes from a form (https://www.excelbanter.com/excel-programming/380639-re-uncheck-checkboxes-form.html)

Bob Phillips

uncheck checkboxes from a form
 
Dim ctl As Control
For Each ctl In Me.Controls
If TypeName(ctl) = "CheckBox" Then
ctl.Value = False
End If
Next ctl

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)


"Ben" wrote in message
...
Hi all,

I have a form with a list of 15 checkboxes. How do I use a FOR EACH loop
to uncheck all the checkboxes? Thanks for your help.

Ben

--




Ben

uncheck checkboxes from a form
 
Bob,

It worked. Thanks again.

Ben

--



"Bob Phillips" wrote:

Dim ctl As Control
For Each ctl In Me.Controls
If TypeName(ctl) = "CheckBox" Then
ctl.Value = False
End If
Next ctl

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)


"Ben" wrote in message
...
Hi all,

I have a form with a list of 15 checkboxes. How do I use a FOR EACH loop
to uncheck all the checkboxes? Thanks for your help.

Ben

--






All times are GMT +1. The time now is 02:01 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com