Check Boxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top