Advertisement

09.12.2008 at 01:23PM PDT, ID: 23727741
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.3

MS Access 2003: How do I program a check box to automatically select many other check boxes using VBA code to loop

Asked by MOOJODI in Access Coding/Macros, Access Forms

I am not a beginner with Access, but I am a beginner when it comes to VBA code. I learn code as I need it and I am normally successful finding what I need on tech boards. I am on my 3rd day of searching for this solution. I would greatly appreciate any help and would also be ok to have that help dumbed down to  the most basic level.

 I have a form  that has a list of products. There is a checkbox for each product (named: Check100-Check199). The user can select multiple check boxes. I want a check box at the top of the form that says... "Select All" and when that is selected, I want all the product check boxes to be selected. I have figured out how to do this the "long" way using code similar to this:

Private Sub CheckSelectAll_Click()
If Me.CheckSelectAll = True Then
Me.Check100 = True
Me.Check101 = True
Me.Check102 = True
ElseIf Me.CheckSelectAll = False Then
Me.Check100 = False
Me.Check101 = False
Me.Check102 = False
End If

The problem is I have a lot of boxes and may add boxes. So to avoid hundreds of lines of code, I would like my code to say this:

Private Sub CheckSelectAll_Click()
If Me.CheckSelectAll = True Then
Me.Check100 through Check199= True 'this is the line I can't get to work'
ElseIf Me.CheckSelectAll = False Then
Me.Check100 through Check199 = False 'this is another line I can't get to work'
End If


The solutions that I have browsed are very complicated and quite honestly I have no idea what they mean so I hesitate to use them and/or don't know why they don't work when I do try them. Is there an easy way to do this?

Thanks.Start Free Trial
[+][-]09.12.2008 at 01:46PM PDT, ID: 22463746

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.12.2008 at 01:47PM PDT, ID: 22463749

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Access Coding/Macros, Access Forms
Sign Up Now!
Solution Provided By: jimhorn
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20081112-EE-VQP-42 / EE_QW_2_20070628