How do I change the default zoom in Print preview word 2003

G

Guest

I would like to change the default print preview view to another %.
I can change it while viewing the document but can't find it for Print Preview
 
G

Graham Mayor

You can force whatever setting you like with a macro (though I thought the
last used setting should hold?).

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

Will intercept the installed print preview and present it zoomed to 100%
Change the 100 for your preferred zoom setting.

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

Top