Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Access Project and Server Filter

Status
Not open for further replies.

Zirak

MIS
Feb 3, 2003
164
US
I am having a strange problem with the Server Filter property of one of my forms.

In some cases, after I filter my form programmatically the filter remains even after I close the form on its Server Filter property.

I even have a code to set the Server filter to nothing and it still has the same problem.
I have used the following codes on the "On CLose" event og my form:

On CLose:

Me.FilterOn=False

I also tested:
ServerFilter=" "

Can anyone help me?

 
This worked for me when I ran into the same problem a while back.

Private Sub Form_Close()
Me.ServerFilter = ""
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top