how to open a new Word document in draft view as default

R

Raj

I saw some posings on it as to go to Word options, advanced, general and
choose allow opening a document in draft view. It worked for me one time, but
not this time. The new documents keep opening in the small print layout
(can't even see what is in there, the size is so small), and I have to keep
putting documents in Draft view file manually.
 
G

Graham Mayor

Change the zoom setting -
http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm
or
You can control the zoom and the view with auto macros in normal.dot. The
following will set it to 100% zoom and normal/draft view regardless of what
the document thinks it should be. Change the 100 to any preferred zoom
level.the other.

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

Sub AutoNew()
With ActiveWindow.View
.Type = wdNormalView
.Zoom.Percentage = 100
.DisplayPageBoundaries = True
End With
End Sub

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View
.Type = wdNormalView
.Zoom.Percentage = 100
End With
End Sub

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

My web site www.gmayor.com

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

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