Check Boxes!

  • Thread starter Thread starter Floyd Forbes
  • Start date Start date
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

Hope that helps!

Chris Darnell
http://www.darnellc.com
 
Back
Top