Default ms word 2003 to 100%

E

Everett Stanbridge

Is there any way to set ms word 2003 to display all documents at 100% even if
the document has been saved at 150%.
 
D

DeanH

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
 
S

Stefan Blom

Word documents open in the view and zoom they were saved. To force a certain view and zoom ratio for all documents, you can use auto macros. For example:

Sub AutoOpen()
ActiveWindow.View.Type = 3 'print layout view
ActiveWindow.View.Zoom.Percentage = 100
End Sub

Sub AutoNew()
ActiveWindow.View.Type = 3 'print layout view
ActiveWindow.View.Zoom.Percentage = 100
End Sub

Place the macros in your Normal template. For instructions, see http://www.gmayor.com/installing_macro.htm.
 

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.

Ask a Question

Top