P
Pedro Bezunartea via AccessMonster.com
How can I get rid of any filters that have been applied to a form _before_ it is closed and the filter string is saved for the next time you open it?
The following won't work:
Private Sub Form_Open(Cancel As Integer)
Me.Filter = ""
Me.FilterOn = False
End Sub
This doesn't work because the old filter string magically stays there... why? If you try to apply _another_ filter, they get mixed up.
I have reviewed all the posts I've been able to find on the subject unluckily.
I just want to make sure the form is closed without any filters... is this possible?
Thaks,
Pedro Bezunartea.
The following won't work:
Private Sub Form_Open(Cancel As Integer)
Me.Filter = ""
Me.FilterOn = False
End Sub
This doesn't work because the old filter string magically stays there... why? If you try to apply _another_ filter, they get mixed up.
I have reviewed all the posts I've been able to find on the subject unluckily.
I just want to make sure the form is closed without any filters... is this possible?
Thaks,
Pedro Bezunartea.