View Single Post
 
Old 08-12-2013, 10:12 AM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline Windows 7 64bit Office 2010 32bit
Moderator
 
Join Date: Aug 2011
Posts: 4,001
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

At least in WinWord, you must make use of auto macros to ensure that all documents display in the same view and zoom:

Code:
Sub AutoOpen()
ActiveWindow.View.Type = wdPrintView
ActiveWindow.View.Zoom.Percentage = 200
End Sub

Sub AutoNew()
ActiveWindow.View.Type = wdPrintView
ActiveWindow.View.Zoom.Percentage = 200
End Sub
Put the macros in the Normal template. For installation instructions, see http://www.gmayor.com/installing_macro.htm.
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote