Permanently change default Print Options

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi Guys,

one of my users has asked me if it is possible to change her default print
settings so that the aerial button to print only "Current Page" is the
default setting, rather than "All". I have had a search around, but cant see
anything on this.

We use MS Office 2003 SP2 on XP Pro Clients.

Thanks in advance.
 
Add the following macro to her normal.dot template

Sub FilePrintDefault()
Application.PrintOut Range:=wdPrintCurrentPage
End Sub

or add another toolbar button to call

Sub PrintPage()
Application.PrintOut Range:=wdPrintCurrentPage
End Sub

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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