D
DaveF
I want to loop through a group of 3 checkboxes on a form and, if checked,
retrieve their value.
Something like this:
For i = 1 To 3
If .CheckBoxes(i).Checked = True Then
MsgBox .CheckBoxes(i).value
End if
Next
But I am not sure how to properly reference the checkbox control. What
parent object do I use?
The Access Help example uses the Assistant.NewBalloon parent object. I need
to use a Form as the parent object but I can't get the proper syntax to
reference the checkboxes object
retrieve their value.
Something like this:
For i = 1 To 3
If .CheckBoxes(i).Checked = True Then
MsgBox .CheckBoxes(i).value
End if
Next
But I am not sure how to properly reference the checkbox control. What
parent object do I use?
The Access Help example uses the Assistant.NewBalloon parent object. I need
to use a Form as the parent object but I can't get the proper syntax to
reference the checkboxes object