View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Herb Tyson [MVP] Herb Tyson [MVP] is offline
external usenet poster
 
Posts: 2,936
Default How do I change page range "All" to "current Pages" in print menu

There is no option/setting that will let you do that. You would need to use
a macro that preselects "Current page".

The simplest one I can think of is:

Sub ArbitraryMacroName()
SendKeys "^p%e"
End Sub

This macro presses Ctrl+p (^p) then presses Alt+e (%e).

Note: this macro works when placed onto a toolbar or menu, but not when
directly assigned to a keystroke. It also depends on your not having
reassinged Ctrl+p to something other than the Print dialog.


--
Herb Tyson MS MVP
Author of the Word 2007 Bible
Blog: http://word2007bible.herbtyson.com
Web: http://www.herbtyson.com


"Shiv" wrote in message
...
How do I change page range "All" to "current Pages" in print menu so it is
selected every time by default?