Making Draft View Default

O

Otto Moehrbach

Word 2007
I want draft view to be the default when I open a new document. I went to
Word Options - Advanced - General and checked "Allow opening a document in
draft view". That appeared to do nothing, not even for the current
document, that is, when I reopen the current document, it will not open in
draft view. How do I do this? Thanks for your time. Otto
 
G

Graham Mayor

The simplest method is to create autonew (new documents) and autopen
(existing documents) macros with the line

ActiveWindow.View.Type = wdNormalView

See also http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
S

Stefan Blom

After you have selected the option that you mentioned, you must also *save*
your documents in Draft view (since the view is stored with the document).

Note that if you want to force all documents to open in Draft view, you can
use auto macros such as the following:

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

Sub AutoOpen()
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.
 
O

Otto Moehrbach

Graham
I'm quite familiar with VBA in Excel but I have zero knowledge of it in
Word. From what you said, I placed your statement in a Document_Open macro
in an existing document, and that works. But where would I place a similar
macro to force all new documents to open in draft view? Thanks for your
time with a lost soul. Otto
 
O

Otto Moehrbach

Graham
Thanks for that but I have to ask a dumb question: Where is the "Normal
Template"? Otto
 
G

Graham Mayor

The normal template for Word 2003 is normal.dot and for Word 2007 is
normal.dotm. If you have not changed the location where Word stores its
templates you can find it by typing
%APPDATA%\Microsoft\Templates
in the Address bar of Explorer.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
G

Graham Mayor

A bit hasty with the send button :(

Macros are saved by default in the normal template. If you click ALT+F11 and
select Normal in the projects window then This Document in Microsoft Word
Objects, you don't really need to know where the template is located.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
O

Otto Moehrbach

Thanks Graham. Otto

Graham Mayor said:
A bit hasty with the send button :(

Macros are saved by default in the normal template. If you click ALT+F11
and select Normal in the projects window then This Document in Microsoft
Word Objects, you don't really need to know where the template is located.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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