Change view mode

  • Thread starter Thread starter SF
  • Start date Start date
S

SF

Hi,

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

SF
 
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.
 

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

Back
Top