【VBA难题求助】如何控制word进行双面打印?
当然,如果能判断打印机能否支持自动双面打印,就更好了!VBA的宏录制如下:
Sub 宏1()
'
' 宏1 宏
'
'
Application.PrintOut FileName:="", Range:=wdPrintAllDocument, Item:= _
wdPrintDocumentWithMarkup, Copies:=1, Pages:="", PageType:= _
wdPrintAllPages, Collate:=True, Background:=True, PrintToFile:=False, _
PrintZoomColumn:=0, PrintZoomRow:=0, PrintZoomPaperWidth:=0, _
PrintZoomPaperHeight:=0
End Sub
难就在于,这个函数中,参数大部分为可选的,在VFP中,却是不懂得如何表述出这些参数了。