"Print Current Page" Icon or shortcut?

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
 
H

Herb Tyson [MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top