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


From: Stefan Blom on
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.

--
Stefan Blom
Microsoft Word MVP



"Everett Stanbridge" <Everett Stanbridge(a)discussions.microsoft.com> wrote in message news:195B711F-B637-4235-9562-4C6BB77100F9(a)microsoft.com...
> Is there any way to set ms word 2003 to display all documents at 100% even if
> the document has been saved at 150%.
>
>

From: DeanH on
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


"Everett Stanbridge" wrote:

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