Check Boxes

C

Cut2Cure

I have a list of choices in a form that are check boxes and each box feeds a
separate field in my table. One option is to "select entire list" How do I
automatically fill in all the other check boxes indicating all the check
boxes in the list are checked?
 
K

Klatuu

Add an unbound check box to your form. Use the After Update event of this
check box to check or uncheck the other check boxes like this:

Me.Select1 = Me.SelectAll
Me.Select2 = Me.SelectAll
Me.Select3 = Me.SelectAll
etc.
 
Top