I'm not sure why they're acting like that, but you can probably run through
them in an open event and set them to false...
Dim ctl As Control
For Each ctl In Me.Controls
If ctl.ControlType = acCheckBox Then
ctl = False
End If
Next
I think that would effectively all the check boxes to false, though I have
no idea why they would do that to begin with.
--
Jack Leach
www.tristatemachine.com
"I haven''t failed, I''ve found ten thousand ways that don''t work."
-Thomas Edison (1847-1931)
"ryguy7272" wrote:
> I have 20 CheckBoxes on a Form. All are set to Triple State = No. When the
> Form opens, all CheckBoxes, except one, always has a solid green square in
> the middle. I check off all CheckBoxes, close the Form, and all will have
> the tiny green square in there again. Is there some setting that manages
> this? If not, can I add a snippet of code to clear all CheckNBoxes when the
> Form loads?
>
> Thanks!
> Ryan---
>
>
> --
> Ryan---
> If this information was helpful, please indicate this by clicking ''Yes''.