How to reset changes to the Application.Printer object (284286)



The information in this article applies to:

  • Microsoft Office Access 2003
  • Microsoft Access 2002

This article was previously published under Q284286
Moderate: Requires basic macro, coding, and interoperability skills.

This article applies to a Microsoft Access database (.mdb) and to a Microsoft Access project (.adp).

SUMMARY

This article shows you how to reset the Application.Printer object to its default settings after you have customized them.

MORE INFORMATION

The following sample code demonstrates how to print the Catalog report in the Northwind Sample Database. It changes some of the default printer settings and when the print job is completed, the code reset the printer to the default settings.

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.

NOTE: Not all printers and printer drivers support the functionality in the following sample code.

Private Sub PrintCatalogReport()
    Dim rpt As Report
    
    Application.Printer = Application.Printers(0)
    
    DoCmd.OpenReport "Catalog", acViewPreview, , , acHidden
    Set rpt = Reports!Catalog
    
    With rpt.Printer
        .BottomMargin = 720
        .Copies = 2
        .Duplex = acPRDPVertical 'Double sided
        .PaperBin = acPRBNLargeCapacity
    End With
    DoCmd.OpenReport "Catalog", acViewNormal
    DoCmd.Close acReport, "Catalog", acSaveNo
    
    Set Application.Printer = Nothing
End Sub
				
When the print job is completed, this code will clear out the current settings and reset the global Application.Printer object to the default application printer.

Modification Type:MajorLast Reviewed:6/23/2005
Keywords:kbProgramming kbsettings kbprinters kbReport kbprint kbhowto KB284286 kbAudDeveloper