A family of Microsoft relational database management systems designed for ease of use.
ciao Faraday,
try this on apply filter event :
Private Sub Form_ApplyFilter(Cancel As Integer, ApplyType As Integer)
Cancel = ApplyType = 0
End Sub
HTH.
Sandro.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
Is there any way or method to disable the filter/unfilter button on the bottom of a form near the navigation buttons?
When users click this button after filtering the records, it displays all the existing records associated with the form which I do no want.
Is there a way to disable this feature, to avoid displaying all the records to users?
A family of Microsoft relational database management systems designed for ease of use.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
ciao Faraday,
try this on apply filter event :
Private Sub Form_ApplyFilter(Cancel As Integer, ApplyType As Integer)
Cancel = ApplyType = 0
End Sub
HTH.
Sandro.
Thanks a lot,
I have tried it as suggested and it's working.
many kudos