[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[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!

8.9

Filtered "Go to Record" combo box

Asked by AikonEnohp in Access Coding/Macros, Access Forms

Tags: MS Access 2007

I have a form with a unbound CBO box that is used to display a records query.  When the user clicks one of the displayed records, the form moves to the associated record.  I also have an "EZ Filter" text box that creates a "Like *FieldVar*" filter clause and then applies.  This works fine BUT I need the "Go To" record source to (embedded sql statement) to include the forms's filter property when present and when the .FilterOn(True).

The GoTo functionality is built in macro script but the Filter code is in VBA.  PREFER VBA of Access Macro "Language".
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
Private Sub txtFilterBox_AfterUpdate()
    Dim strSearchBy As String
    Dim strFilterBy As String
    Dim intRxCount As Integer
    Dim strMsgPrompt As String
 
    mlngPink = RGB(254, 185, 185)
    strMsgPrompt = "No records exist based on the criteria provided"
 
    If IsNull(Me.txtFilterBox.Value) Then             ' No filter Criteria Provided
        ClearFormFilter                               ' Clear the Form Filter and reset the filter criteria text box
 
    Else                                              ' Criteria Entered
 
        ' Get Criteria
        strSearchBy = Replace(Forms![Import Scrubber]![txtFilterBox], """", """""")
 
        ' Build Filter Clause
        strFilterBy = "([Company] Like ""*" & strSearchBy & "*"")" _
                      & " OR ([City] Like ""*" & strSearchBy & "*"")" _
                      & " OR ([ZIP/Postal Code] Like ""*" & strSearchBy & "*"")" _
                      & " OR ([varSpecialyDesc] Like ""*" & strSearchBy & "*"")" _
                      & " OR ([PrimaryDnBSICDescription] Like ""*" & strSearchBy & "*"")" _
                      & " OR ([Contact Name] Like ""*" & strSearchBy & "*"")"
 
        ' Process the data filter request
        intRxCount = _
        DCount("*", Me.RecordSource, strFilterBy)     ' Count Filtered Records
        If intRxCount > 0 Then                        ' At least one matching record was exists
            
            With Me                                   ' Set Active Form Object properties
                .txtFilterBox.BackColor = mlngPink    ' Set Criteria Text Box back-color
                .Filter = strFilterBy                 ' Set Filter Criteria
                .FilterOn = True                      ' Activate Filter
                .cmdShowAll.Enabled = True            ' Enable "Show All" CMD Button
            End With
            DoCmd.GoToRecord , , acFirst              ' Go to first record
        
        Else                                          ' No matching records were found
            ClearFormFilter                           ' Clear the Form Filter and reset the filter criteria text box
            MsgBox (strMsgPrompt)                     ' Tell the user
        End If
    End If
End Sub
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Sub ClearFormFilter()
    mlngWhite = RGB(255, 255, 255)
 
    With Forms![Import Scrubber]                      ' Form Object
        .Filter = ""                                  ' Clear any existing filter
        .FilterOn = False                             ' Set the "Filtered flag" to off
        .txtFilterBox.BackColor = mlngWhite           ' Change the Criteria control backcolor to White
        .txtFilterBox.Format = "@;[blue]""Enter Filter Criteria..."""    ' Add user prompt text
        .txtFilterBox = Null
        .cmdShowAll.Enabled = False                   ' Disable the "Show All Records" cmd button
    End With
End Sub
Attachments:
 
Form Screen Shot
Form Screen Shot
 
[+][-]09/17/09 03:44 PM, ID: 25361795Accepted Solution

View this solution now by starting your 30-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
Tags: MS Access 2007
Sign Up Now!
Solution Provided By: thenelson
Participating Experts: 1
Solution Grade: B
 
[+][-]09/17/09 04:49 PM, ID: 25362172Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

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

 
[+][-]09/17/09 08:48 PM, ID: 25362831Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

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

 
[+][-]09/17/09 08:55 PM, ID: 25362853Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]09/18/09 12:40 PM, ID: 25369294Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

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

 
 
Loading Advertisement...
20091118-EE-VQP-93 - Hierarchy / EE_QW_3_20080625