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
--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
E-mail (e-mail address removed)
Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
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.