> The brevity of my previous post matched that you your question.
> More info gets better answer.
[quoted text clipped - 5 lines]
>> Can do?
>> Thanks.
Me.ChecBoxName = True
Just use the actual name of the check box and put this code in the After
Update of every control on the form where you enter any data.
If you have any code that performs an Undo on the form, you will want to
change it to False after the Undo.

Signature
Dave Hargis, Microsoft Access MVP
> I mean that when any data gets entered in any field of that form, I want a
> checkbox that is on that form to be checked.
[quoted text clipped - 8 lines]
> >> Can do?
> >> Thanks.
Sue - 13 May 2007 03:57 GMT
Thanks but that didn't do it.
Ah well!

Signature
Thanks for your time!
> Me.ChecBoxName = True
>
[quoted text clipped - 16 lines]
> > >> Can do?
> > >> Thanks.
missinglinq - 13 May 2007 13:17 GMT
Hey, Sue!
Since the first time information is entered into any control on a form is
when the record is a new record, why not:
Private Sub Form_Current()
If Me.NewRecord Then
YourCheckBoxName = True
End If
End Sub

Signature
There's ALWAYS more than one way to skin a cat!
Answers/posts based on Access 2000
Sue - 13 May 2007 14:00 GMT
Duh.
I set the default on the checkbox for this form to "yes". This is the only
form where I enter this particular information. I think I was making things
way too complicated.
Thanks, everyone.

Signature
Thanks for your time!
> Hey, Sue!
>
[quoted text clipped - 6 lines]
> End If
> End Sub