Thread: [Solved] Printing without Comments
View Single Post
 
Old 02-01-2016, 12:51 AM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,138
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

You can switch off the display of comments while you print. Recent Word versions have the option to print without comments, but I am not certain that Word 2007 had that option. If not it's easy enough to achieve with a macro.

Code:
Sub HideCommentsAndPrint()
    ActiveWindow.View.ShowComments = False
    Options.PrintBackground = False
    ActiveDocument.PrintOut
    Options.PrintBackground = True
    ActiveWindow.View.ShowComments = True
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote