Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
54 lines (31 loc) · 1.04 KB

form-printer-property-access.md

File metadata and controls

54 lines (31 loc) · 1.04 KB
title keywords f1_keywords ms.prod api_name ms.assetid ms.date
Form.Printer Property (Access)
vbaac10.chm13523
vbaac10.chm13523
access
Access.Form.Printer
c533271a-c500-57de-f16c-ed384698f829
06/08/2017

Form.Printer Property (Access)

Returns or sets a Printer object representing the default printer on the current system. Read/write.

Syntax

expression. Printer

expression A variable that represents a Form object.

Example

The following example makes the first printer in the Printers collection the default printer for the system, and then reports its name, driver information, and port information.

Dim prtDefault As Printer 
 
Set Application.Printer = Application.Printers(0) 
 
Set prtDefault = Application.Printer 
 
With prtDefault 
 MsgBox "Device name: " &; .DeviceName &; vbCr _ 
 &; "Driver name: " &; .DriverName &; vbCr _ 
 &; "Port: " &; .Port 
End With 

See also

Concepts

Form Object