J
John Calder
Hi
I presently have a macro attached to a small graphic that
when selected prints the current page (see code below).
This works fine but what I would like to add to it is have
it so when the graphic is selected, not only does it print
the current page but also prints the following page.
My document has a number of 2 page forms so to simplifiy
the printing is the reason that I want to include this.
Any help would be much appreciated
John
Sub PrintCurrentPage()
'
' PrintCurrentPage Macro
Application.PrintOut FileName:="",
Range:=wdPrintCurrentPage, Item:= _
wdPrintDocumentContent, Copies:=1, Pages:="",
PageType:=wdPrintAllPages, _
Collate:=False, Background:=False,
PrintToFile:=False, PrintZoomColumn:=0 _
, PrintZoomRow:=0, PrintZoomPaperWidth:=0,
PrintZoomPaperHeight:=0
End Sub
I presently have a macro attached to a small graphic that
when selected prints the current page (see code below).
This works fine but what I would like to add to it is have
it so when the graphic is selected, not only does it print
the current page but also prints the following page.
My document has a number of 2 page forms so to simplifiy
the printing is the reason that I want to include this.
Any help would be much appreciated
John
Sub PrintCurrentPage()
'
' PrintCurrentPage Macro
Application.PrintOut FileName:="",
Range:=wdPrintCurrentPage, Item:= _
wdPrintDocumentContent, Copies:=1, Pages:="",
PageType:=wdPrintAllPages, _
Collate:=False, Background:=False,
PrintToFile:=False, PrintZoomColumn:=0 _
, PrintZoomRow:=0, PrintZoomPaperWidth:=0,
PrintZoomPaperHeight:=0
End Sub