Link to home
Start Free TrialLog in
Avatar of Taras
TarasFlag for Canada

asked on

MS Access Audit search statements

In MS Access 2013 front end back end on SQL Server 2014 I have several forms on which I do the Search and pull records on form (not just for edit) it could be just search and show data.
Is there way to record those search occurrences:  Who did that  and What was search statement? I am not interested in log of changes of record, delete or adding new ones but only in search.
ASKER CERTIFIED SOLUTION
Avatar of Dale Fye
Dale Fye
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Adding to the above ,probably (it depends) you could write a "public" function that will have as argument the Form object and a param array with the criteria for your searching...so given the fact that your search would be globally controlled you can easily add a logger to record your searches
Avatar of Taras

ASKER

Thank you Dale and John I will use yours suggestions.