Thread: checkboxes
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default checkboxes

But your code did work ok for me.




hshayhorn wrote:

I'm looking for a way to uncheck check boxes all at once rather than one line
at a time. If I use ActiveSheet.CheckBoxes("Check Box 1").Value = 0 I'm fine
but I have about 30 check boxes I would like to do this to.

ActiveSheet.CheckBoxes.Visible = False 'this works great. It hides them all

ActiveSheet.CheckBoxes.Value = 0 'this doesn't work at all. I get
an error. Is there an easy way to make all check boxes blank? I have the
default value set to unchecked but I need to reset them sort a speak based on
other things going on.


--

Dave Peterson