View Single Post
 
Old 05-05-2016, 09:58 PM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,137
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

Save the templates as macro enabled and add the following macros to the templates. the macros will intercept the Print commands and print only page 2
Code:
Option Explicit

Sub FilePrint()
    Application.PrintOut Filename:="", _
                         Range:=wdPrintRangeOfPages, _
                         copies:=1, _
                         Pages:="2"
End Sub

Sub FilePrintDefault()
    Application.PrintOut Filename:="", _
                         Range:=wdPrintRangeOfPages, _
                         copies:=1, _
                         Pages:="2"
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