Shortcut key for printing a current pag?

  • Thread starter Thread starter SharonBowden
  • Start date Start date
S

SharonBowden

I was using AltP for printing current pages and this seems to have been lost?
I find this AltP very useful. Please can you let me know how to set this
up again?

Many thanks

Sharon
 
Reassign the shortcut in the Customize Keyboard dialog box. To open the
dialog box: Office button | Word Options, Customize. Click Keyboard (Word
2007).

--
Stefan Blom
Microsoft Word MVP


in message
news:[email protected]...
 
Unless Word 2007 has a specific command for printing the current page
(previous versions do not), the keyboard shortcut will have to run a macro.
 
Good point. As far as I know, there is no such command. The following macro
can be used:

Sub PrintCurrentPage()
On Error Resume Next
ActiveDocument.PrintOut Range:=wdPrintCurrentPage
End Sub

For instructions, see http://www.gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


in message
 

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

Back
Top