Default to open Word files in draft view.

C

Charles J

With Office 2007, I am trying to set Word
so that it opens my files in draft view rather
than in print layout. Is it possible to set the
view in which files are opened?
 
J

Jay Freedman

Charles said:
With Office 2007, I am trying to set Word
so that it opens my files in draft view rather
than in print layout. Is it possible to set the
view in which files are opened?

Documents should open in the view in which they were last saved
(http://www.word.mvps.org/FAQs/General/SaveViewAndZoom.htm, but note that
Word 2007 uses Normal.dotm instead of Normal.dot).

If you want to force all documents to draft view regardless of how they were
saved or where they came from, add this macro to your Normal.dotm template
(http://www.gmayor.com/installing_macro.htm):

Sub AutoOpen()
ActiveWindow.View = wdNormalView
End Sub

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
S

Suzanne S. Barnhill

Even for documents saved in Draft view, you have to enable opening docs in
Draft view, which is in the Word Options somewhere.
 
D

djprius

Suzanne said:
Even for documents saved in Draft view, you have to enable opening docs in
Draft view, which is in the Word Options somewhere.

In Word 2007, one can find that setting here:

Office Button |Word Options | Advanced | General |Allow Opening a
Document in Draft View

David
 
S

Suzanne S. Barnhill

And just to clarify, it's only in Word 2007 that that setting exists or is
needed (previous versions have no problem opening in Normal view).
 
S

Stefan Blom

And, of course, a similar macro could be added to force newly created
documents to display in Draft view:

Sub AutoNew()
ActiveWindow.View = wdNormalView
End Sub
 

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