Groups of controls
Only indirectly, i.e. if you've given the checkboxes names that reflect their
group. Then you could do something like:
If Left(myChk.Name,4) = "grp1" then myChk.Value = False
"FB" wrote:
Thanks. What I would like to do is something like
Dim myChk As CheckBox
For Each myChk In <Group of Checboxes #1
Is it possible?
|