Default zoom size

  • Thread starter Thread starter Bob S
  • Start date Start date
You can put the following line in an AutoOpen and AutoNew macro stored in
your document template:

ActiveWindow.View.Zoom.PageFit = wdPageFitTextFit
 
Bob,

As you posted in the new user group I thought my earlier anwer might be a
bit vague. See the following link for instructions how to insert macros
provided in these groups and a primer on what a AutoOpen and AutoNew macor
is:

http://www.gmayor.com/installing_macro.htm

You would only need:

Sub AutoOpen
ActiveWindow.View.Zoom.PageFit = wdPageFitTextFit
End Sub

And

Sub AutoNew
ActiveWindow.View.Zoom.PageFit = wdPageFitTextFit
End Sub
 
Back
Top