View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.programming
FuriaRi0T FuriaRi0T is offline
external usenet poster
 
Posts: 6
Default 'Uncheck button'

Thank you very much Ossie. Worked like a dream.

"OssieMac" wrote:

If you used ActiveX checkboxes then this:-

Sub UnCheckBoxesActiveX()

Dim objChkBox As OLEObject
With Sheets("Sheet1")
For Each objChkBox In .OLEObjects
If TypeName(objChkBox.Object) = "CheckBox" Then
objChkBox.Object.Value = False
End If
Next
End With
End Sub


--
Regards,

OssieMac