Auto open Word file in Web Layout or Draft view

M

MZ

By default, Word (2007, but also earlier versions) opens all my documents in
Print Layout view. How can I change this to auto open documents in Web Layout
or Draft view?
 
S

Stefan Blom

By default, Word opens a document in the view and zoom it was saved (see
http://word.mvps.org/faqs/general/SaveViewAndZoom.htm). Note,
however, that Word 2007 won't open in Draft view unless you choose the
option to "Allow opening a document in Draft view" in Office button | Word
Options, Advanced category.

Alternatively, if you want to force Draft view in all documents that you
open or create, use the following auto macros in normal.dotm:

Sub AutoOpen()
Options.AllowOpenInDraftView = True
ActiveWindow.View.Type = wdNormalView
ActiveWindow.View.Zoom = 100 'change zoom if desired
End Sub

Sub AutoNew()
Options.AllowOpenInDraftView = True
ActiveWindow.View.Type = wdNormalView
ActiveWindow.View.Zoom = 100 'change zoom if desired
End Sub

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

Top