ACC2000: Setting the Filter Property of a Form Does Not Apply the Filter (208507)
The information in this article applies to:
This article was previously published under Q208507 Moderate: Requires basic macro, coding, and interoperability skills.
This article applies only to a Microsoft Access database (.mdb).
SYMPTOMS
Setting the Filter property of a form does not apply the filter.
CAUSE
The Filter property holds the filter that is applied when the filtering process is started, but does not start the filtering process.
RESOLUTION
You must set the FilterOn property of the form to True to apply the filter. If you want the filter to be applied when the form opens, you can set the FilterOn property to True on the Open event of the form by using a macro or Visual Basic code, or you can apply the filter manually.
Method 1: Using a Macro
To apply a filter when the form is opened, create the following macro and
set the form's OnOpen property to the following macro:
Action: SetValue
Item: FilterOn
Expression: True
Method 2: Using Visual Basic Code
To apply a filter when the form is opened, set the form's OnOpen property to the following event procedure:
Private Sub Form_Open(Cancel As Integer)
Me.FilterOn = True
End Sub
Method 3: Applying a Filter Manually
To apply a filter after the form is opened:
- Click Apply Filter on the Form View toolbar.
-or-
- Click Apply Filter/Sort on the Records menu.
REFERENCES
For more information about how to use the sample code in this article, click
the article number below to view the article in the Microsoft Knowledge
Base:
212536
OFF2000: How to Run Sample Code from Knowledge Base Articles
For more information about creating a macro, click Microsoft Access Help on the Help menu, type create a macro in the Office Assistant or the Answer Wizard, and then click Search to view the topic.
Modification Type: | Minor | Last Reviewed: | 3/10/2003 |
---|
Keywords: | kbprb KB208507 |
---|
|