Is there an icon for Print Page that I can add to a toolbar?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to have an icon on my toolbar that will permit me to print just
the page I am currently working on.
 
You can create a "print current page" macro:

Sub PrintCurrentPage()
ActiveDocument.PrintOut Range:=wdPrintCurrentPage
End Sub

....and assign the macro to a toolbar button.
 
Back
Top