View Single Post
 
Old 12-11-2012, 06:57 AM
Colin Legg's Avatar
Colin Legg Colin Legg is offline Windows 7 32bit Office 2010 32bit
Expert
 
Join Date: Jan 2011
Location: UK
Posts: 369
Colin Legg will become famous soon enough
Default

The way your code is trying to access it would work if it were an ActiveX control (and if it were qualified with the parent sheet in the code). Since it is a forms control, you can access it like this:
Code:
Sub Button2_Click()
    Sheet1.CheckBoxes("Check Box 4").Value = False
End Sub
Where Sheet1 is the codename of the worksheet the checkbox lives on.
Reply With Quote