checkboxes

  • Thread starter Thread starter Jarod
  • Start date Start date
J

Jarod

Is there a way to loop throuh all the check boxes in a
form to check if they are true or false? How about a
page? Thanks for your help.
 
Jarod,
It's not a problem, but it would help to know what you wanted to do with the
information.

In a command button Click event:

Dim ctl as Control
For each ctl in Controls
If TypeOf ctl Is CheckBox then
debug.print ctl.Name & " " & ctl.value
End If
Next
 
Back
Top