View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Permanently change default Print Options

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
Word MVP web site http://word.mvps.org


M_Hood wrote:
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.