My experience has been that however another user has saved and closed the
file is how the file will open for me. You could, presumably, write a macro
that forced all docs to switch to a particular view upon opening.
If you want to over-ride the settings in all documents, you need a pair of
macros in normal.dot - the second contains an extra line (optional) to put
the full document path in the title bar -
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
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
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.