View Single Post
  #2   Report Post  
Posted to microsoft.public.word.newusers
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
Default Change view mode

To force all documents into Draft view, add the following auto macros to
your normal.dotm (if you are already using auto macros, just add the lines
of code to those macros):

Sub AutoOpen()
Options.AllowOpenInDraftView = True
ActiveWindow.View.Type = wdNormalView
ActiveWindow.View.Zoom.Percentage = 100
End Sub

Sub AutoNew()
Options.AllowOpenInDraftView = True
ActiveWindow.View.Type = wdNormalView
ActiveWindow.View.Zoom.Percentage = 100
End Sub

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

--
Stefan Blom
Microsoft Word MVP



"SF" wrote in message
...
Hi,

My word 2007 open in Print Layout mode, how to I tell Word 2007 to open in
draft mode for every document.

SF