Thread: [Solved] Print Document (no markups)
View Single Post
 
Old 08-08-2012, 02:14 PM
Stanza_chad Stanza_chad is offline Windows 7 64bit Office 2010 64bit
Novice
 
Join Date: Aug 2012
Posts: 3
Stanza_chad is on a distinguished road
Default Print Document (no markups)

Trying to create a macro to be able print documents without showing markup comments. Apparently it is not possible to uncheck Print Markups by default if there open comments, so hoping to work around that by creating a shortcut.
So far I have this, but doesn't seem to change the Print what option to just say Document:
Code:
Sub PrintDoc()
'
' Print document only, no markups.
'
Application.PrintOut Range:=wdPrintAllDocument, Item:= _
wdPrintDocumentContent, Copies:=1
End Sub
Any suggestions would be great at this point.

Thanks.

Last edited by macropod; 08-08-2012 at 05:12 PM. Reason: Added code tags
Reply With Quote