Opening saved word files at 150%

  • Thread starter Thread starter zxcvar
  • Start date Start date
Z

zxcvar

Greetings! I want Word to open saved files at 150% when I open the
previously saved Word files. What shall I do? With thanks.
 
You need two macros - one for new files, the other to override the zoom
setting saved in the documents. The extra (first) line in the second macro
adds the filename and path to the Word title bar - you can delete it if not
required. Both macros assume that you want print layout view. If you want
normal view change the second (.Type) line to .Type=wdNormalView

Sub Autonew()
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
End With
End Sub

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
End With
End Sub

See http://www.gmayor.com/installing_macro.htm if you don't know how to use
this code.


--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
E-mail (e-mail address removed)
Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
 
Back
Top