Default Print Preview Zoom

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!
 
G

Graham Mayor

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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
M

melickas

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

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

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