print a document with all the default print settings : Word Document Print « Word « VBA / Excel / Access / Word






print a document with all the default print settings

 

Sub main()
    Dim wdApp As Word.Application
    Set wdApp = GetObject(, "Word.Application")
    wdApp.ActiveDocument.PrintOut
End Sub

 








Related examples in the same category

1.setting the Range and Pages arguments of the PrintOut method