Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How to reset changes to the Application.Printer object


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

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

↑ Back to the top


Summary

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

↑ Back to the top


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.

Note In Microsoft Office Access 2007, you only have to replace the report name "Catalog" with an available report for the 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.

↑ Back to the top


Keywords: kboffice12yes, kbfreshness2006, kbprogramming, kbsettings, kbprinters, kbreport, kbprint, kbsweptsoltax, kbswept, kboffice2003yes, kbhowto, kb

↑ Back to the top

Article Info
Article ID : 284286
Revision : 3
Created on : 4/23/2018
Published on : 4/23/2018
Exists online : False
Views : 225