Default Print Preview Zoom

  • Thread starter Thread starter melickas
  • Start date Start date
M

melickas

Using Word 2003 on (2) different computers. Word 2002 on another --all
exhibit same issue.

I want the default Print Preview to default to 100% with One Page view.

No matter how I last leave the zoom, Word does not seem to remember
what it was. It is 61%, 38% or 42% on each PC -- how does this happen?
Do I have to change a registry setting?


Thank you!
 
The following macro saved in normal.dot of each PC will cause preview to
initially open always at 100% by intercepting the built-in command.

Sub FilePrintPreview()
ActiveDocument.PrintPreview
ActiveWindow.ActivePane.View.Zoom.Percentage = 100
End Sub

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Works great..Thank you!

Graham said:
The following macro saved in normal.dot of each PC will cause preview to
initially open always at 100% by intercepting the built-in command.

Sub FilePrintPreview()
ActiveDocument.PrintPreview
ActiveWindow.ActivePane.View.Zoom.Percentage = 100
End Sub

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top