(Access Printer.Duplex 屬性) | Microsoft Docs
文章推薦指數: 80 %
Office VBA reference topic.
跳到主要內容
已不再支援此瀏覽器。
請升級至MicrosoftEdge,以利用最新功能、安全性更新和技術支援。
下載MicrosoftEdge
其他資訊
目錄
結束焦點模式
閱讀英文
儲存
目錄
閱讀英文
儲存
編輯
Twitter
LinkedIn
Facebook
電子郵件
目錄
(AccessPrinter.Duplex屬性)
發行項
04/11/2022
1位參與者
本文內容
會傳回或設定指出如何指定的印表機處理雙面列印AcPrintDuplex常數。
讀取/寫入。
語法
運算式。
雙工
表達代表Printer物件的變數。
範例
下列範例會為程序的strFormname引數所指定的表單設定各種印表機設定。
SubSetPrinter(strFormnameAsString)
DoCmd.OpenFormFormName:=strFormname,view:=acDesign,_
datamode:=acFormEdit,windowmode:=acHidden
WithForms(form1).Printer
.TopMargin=1440
.BottomMargin=1440
.LeftMargin=1440
.RightMargin=1440
.ColumnSpacing=360
.RowSpacing=360
.ColorMode=acPRCMColor
.DataOnly=False
.DefaultSize=False
.ItemSizeHeight=2880
.ItemSizeWidth=2880
.ItemLayout=acPRVerticalColumnLayout
.ItemsAcross=6
.Copies=1
.Orientation=acPRORLandscape
.Duplex=acPRDPVertical
.PaperBin=acPRBNAuto
.PaperSize=acPRPSLetter
.PrintQuality=acPRPQMedium
EndWith
DoCmd.Closeobjecttype:=acForm,objectname:=strFormname,_
Save:=acSaveYes
EndSub
支援和意見反應
有關於OfficeVBA或這份文件的問題或意見反應嗎?如需取得支援服務並提供意見反應的相關指導,請參閱OfficeVBA支援與意見反應。
本文內容
延伸文章資訊
- 1Excel VBA double sided printing | Forum post - STL Training
Excel VBA double sided printing. HI, How do i set a double sided printing via VBA? my default on ...
- 2Print double sided - OzGrid Free Excel/VBA Help Forum
Print double sided · Cells.Select · Selection.RowHeight = 32 · With ActiveSheet.PageSetup ·.Print...
- 3How to get Duplex printing working in Excel? - Stack Overflow
Since the duplex option cannot be chosen by VBA directly, you can workaround this by adding the s...
- 4Duplex printing with macros - Google Groups
I recorded a macro, and part of that macro is supposed to duplex my document when i print it. How...
- 5Thread: Excel VBA - Printing Front And Back - VBForums
excel has no provision in vba to print in duplex, even if it is in the printer dialog, and works ...