How do I change page range "All" to "current Pages" in print menu

S

Shiv

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

Herb Tyson [MVP]

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.
 

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