Group: microsoft.public.word.vba.general
From: "Stefan Blom"
Date: Monday, March 10, 2008 10:02 AM
Subject: Re: Need Macro (?) to Change Default Page View to FULL PAGE!

Place these macros in your Normal template:

Sub AutoNew()
ActiveWindow.View.Type = 3
ActiveWindow.View.Zoom.Percentage = 100
End Sub

Sub AutoOpen()
ActiveWindow.View.Type = 3
ActiveWindow.View.Zoom.Percentage = 100
End Sub

If you need assistance, see http://www.gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


"Jim In Minneapolis" wrote in message
news:14BC6DD1-45AA-4339-9D8D-620B5638195B@microsoft.com...
>I get a lot of .doc file attachments in my email. When I click on them to
> view, my Word 2007 ends up displaying them with VARIOUS (diferent!) page
> view
> magnifications each time. Some times they'll display around 200%-or-so.
> Sometimes around 175%, etc.
>
> QUESTION: I would like ALL of these .doc attachments to initially display
> at 100% (full-page view) .. . . withOUT me having to "manually" shrink or
> enlarge whatever roll-of-the-dice magnificiation the paticular document
> initially displays!
>
> Is there any way to do this?
>
> Thanks for your help!