"Print Current Page" Icon or shortcut?

  • Thread starter Thread starter JJS
  • Start date Start date
J

JJS

Is there an icon or a keyboard short cut to print ONLY the current page. I
know I can go to the Print Menu, click current page, then click print - but,
is there a shorter, one click, way to print only the current page. Thank
you. JJS
 
I don't believe there's anything built-in. You could record a macro to print
the current page, then assign it to a keystroke or a toolbar button.

Assuming your defaults are all acceptable, the macro could be as simple as
the following:

Sub PrintCurrentPage()
'
' PrintCurrentPage Macro
' Macro recorded 4/9/2008 by Herb
'
Application.PrintOut Range:=wdPrintCurrentPage
End Sub
 
Back
Top