View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Martin Martin is offline
external usenet poster
 
Posts: 336
Default 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?