How-to Force a Zoom Setting

T

tpmax

I'm looking for a way to set a zoom magnification in Word as a default so
that whenever a document is opened in Print Preview, it will be opened to the
zoom that I specify. Does anyone have any ideas on how I could accomplish
this?

Many thanks!
 
G

Greg Maxey

Put something like the following in your as an AutoOpen macro in your
document template:

Sub AutoOpen()

WIth ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 105 'or whatevey you prefer
End With
 
Top