To force *any* document opened in Word to a certain zoom (and view), you can
use the following auto macros in normal.dot:
Sub AutoOpen()
With ActiveWindow.View
.Type = 3 ' Print Layout view (use 1 for Normal view)
.Zoom = 500 'fix the tiny cursor error
.Zoom = 100 ' specify the desired percentage
End With
End Sub
Sub AutoNew()
With ActiveWindow.View
.Type = 3 ' Print Layout view (use 1 for Normal view)
.Zoom = 500 'fix the tiny cursor error
.Zoom = 100 ' specify the desired percentage
End With
End Sub
For more, see
http://www.gmayor.com/installing_macro.htm.
Hope this helps
DeanH