Help and Support
 

powered byLive Search

ACC: How to Maintain a Print Log for Reports

Retired KB ArticleThis article was written about products for which Microsoft no longer offers support. Therefore, this article is offered "as is" and will no longer be updated.
Article ID:154894
Last Review:January 19, 2007
Revision:2.1
This article was previously published under Q154894
On This Page

SUMMARY

Moderate: Requires basic macro, coding, and interoperability skills.

This article describes how to add a record to a table each time that you print a report. This technique is useful for maintaining a print log that tracks the print history of a report.

Back to the top

MORE INFORMATION

The following example uses the Print event of a report to add a record to a table. The record contains the report's name and print date. The example uses the report's Activate and Deactivate events to set a global variable that is evaluated during the Print event. This prevents Print Preview from adding a new record to the history table.

NOTE: In Microsoft Access 7.0 and 97, there is one sequence of events that will create a new record in the history table when you Print Preview the report. If you open the report in Design view to view or change any of its code and then switch to Print Preview, the Activate event does not occur, and the global variable is not set. To work around this problem, after viewing or changing the report's code, close the report before you open it in Print Preview.

CAUTION: Following the steps in this example will modify the sample database Northwind.mdb (or NWIND.MDB in version 2.0 or earlier). You may want to back up the Northwind.mdb (or NWIND.MDB) file and perform these steps on a copy of the database.

Back to the top

Creating a History Table and a Report


1.Open the sample database Northwind.mdb (or NWIND.MDB in version 2.0).
2.Create a table with the following structure:
      Table: tblPrintedReports
      --------------------------------------------------
      Field Name: ID
         DataType: AutoNumber (or Counter in version 2.0)
         Indexed: Yes (No Duplicates)
      Field Name: ReportName
         DataType: Text
         FieldSize: 75
      Field Name: PrintDate
         DataType: Date/Time
         Format:  General Date

      Table Properties: tblPrintedReports
      -----------------------------------
      PrimaryKey: ID
						
3.Create a new module and type the following lines in the Declarations section:
      Option Explicit
      Global Flag
						
4.Save the module as basPrintedReports, and then close it.
5.Create an AutoReport based on the Customers table. Save the report as rptCustomers.
6.Open the rptCustomers report in Design view. Set the report's OnActivate property to the following event procedure:
      Private Sub Report_Activate()
      Flag = 0
      End Sub
						
7.Set the report's OnDeactivate property to the following event procedure:
      Private Sub Report_Deactivate()
      Flag = -1
      End Sub
						
8.Set the report header's OnPrint property to the following event procedure.

NOTE: You must include the report header section on the report, and its Height property must be greater than zero. However, you do not have to place any controls in the header section.
      Sub ReportHeader3_Print (Cancel As Integer, PrintCount As Integer)
      Dim dbs As Database, rst As Recordset
         Set dbs = CurrentDB()
         Set rst = dbs.OpenRecordset("tblPrintedReports")
      Flag = Flag + 1
      ' If the current value of Flag = 1, then a hard copy of the
      ' report is printing, so add a new record to the history table.
      If Flag = 1 Then
         rst.AddNew
         rst!ReportName = "rptCustomers"
         rst!PrintDate = Now
         rst.Update
         Flag = 0
      End If
      End Sub
						
9.Save the rptCustomers report, and then close it.

Back to the top

Generating a History Record


1.Select the rptCustomers report in the Database window.
2.On the File menu, click Print to print the report.
3.Open the tblPrintedReports table. Note that a new record shows the report name, and the date and time it was printed. For example:
      ID   ReportName     PrintDate
      --------------------------------------
       1   rptCustomers   8/13/96 3:25:11 PM
						

Back to the top

REFERENCES

For more information about Activate and Deactivate events, search the Help Index for "Activate," or ask the Microsoft Access 97 Office Assistant.

For more information about Print events, search the Help Index for "Print Event," or ask the Microsoft Access 97 Office Assistant.

Back to the top


APPLIES TO
Microsoft Access 2.0 Standard Edition
Microsoft Access 95 Standard Edition
Microsoft Access 97 Standard Edition

Back to the top

Keywords: 
kbhowto KB154894

Back to the top

Article Translations

 

Other Support Options

  • Need More Help?
    Contact a Support professional by Email, Online or Phone.
  • Customer Service
    For non-technical assistance with product purchases, subscriptions, online services, events, training courses, corporate sales, piracy issues, and more.
  • Newsgroups
    Pose a question to other users. Discussion groups and Forums about specific Microsoft products, technologies, and services.