Here is a code snippet that should point you in the right direction:
Dim i As Integer
Dim objControl As Control
For i = 0 To Me.Controls.Count - 1
Set objControl = Me.Controls.Item(i)
If (objControl.ControlType = acCheckBox) Then
Debug.Print objControl.Value
End If
Set objControl = Nothing
Next