ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Assessing whether any checkboxes are checked within frame (https://www.excelbanter.com/excel-programming/342963-assessing-whether-any-checkboxes-checked-within-frame.html)

ExcelMonkey

Assessing whether any checkboxes are checked within frame
 
Is it possible to check and see if at least 1 checkbox in a frame is checked.
I am assuming that you have to group the checkboxes and check on of their
properties within a For Each loop

Thanks.

Tom Ogilvy

Assessing whether any checkboxes are checked within frame
 
Dim bChecked as Boolean
Dim ctl as Control

bChecked = False
for each ctl in Userform1.Frame1.Controls
if typeof ctl is MSForms.CheckBox then
if ctl.Value then
bChecked = True
exit for
end if
end if
Next
if bChecked = False then

msgbox "Please check on box"
End if

--
Regards,
Tom Ogilvy

"ExcelMonkey" wrote in message
...
Is it possible to check and see if at least 1 checkbox in a frame is

checked.
I am assuming that you have to group the checkboxes and check on of their
properties within a For Each loop

Thanks.





All times are GMT +1. The time now is 12:47 AM.

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