Is any chance to allow user using access to print just two copiers each reports. When someone try press 3th time button "print" report will not be printed.
Is this possible? Yes, of course this is possible. It's possible to go to the moon, it's possible to build the great pyramid, it's possible to count button clicks.
Always assume a thing is possible and then ask the next--far more interesting--question, "How ..."
You need a table with
Code:
[B]tUserReport
[/B]tUserReportID
UserID 'maybe UserName???
ReportID 'maybe ReportName???
Date
Count
You need to count button clicks for UserA for ReportB for DateC. If the record doesn't exist the count is zero. If the record exists and count is < 2, print the report.
For each click, increment tUserReport.Count for UserA, ReportB on DateC.
Hope this helps.