Prev: Unable to save to Windows NT Server
Next: Tab stops
From: Everett Stanbridge Everett on 20 Apr 2010 05:17 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 20 Apr 2010 07:01 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 20 Apr 2010 06:58 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%. > >
|
Pages: 1 Prev: Unable to save to Windows NT Server Next: Tab stops |