How can I make Word 2013 open in Draft View by default?

Anonymous
2013-04-16T04:27:08+00:00

I use Word 2013 on a 14" laptop and the default view, Print Layout, is a colossal waste of space, but I can't get the program to open in Draft View by default. Have done the following:

  • Changed settings to "allow documents to open in Draft View"
  • Saved documents in Draft View...they re-open in Print Layout
  • Tried to change New Document template to Draft View but new documents still only open in Print Layout.

I hope that the answer is not "you have to change to draft view every single time you open a document." There are already a lot more clicks / action in Word 2013 than in previous versions.

Have searched forums but there doesn't seem to be an answer for this in Word 2013.

Thanks for your assistance.

BP211

Microsoft 365 and Office | Word | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
Jay Freedman 208.3K Reputation points Volunteer Moderator
2013-04-16T19:49:33+00:00

Follow the instructions at http://www.gmayor.com/installing_macro.htm to put the following two macros into a module in the Normal.dotm template:

Sub AutoOpen()

    ActiveWindow.View.Draft = True

End Sub

Sub AutoNew()

    ActiveWindow.View.Draft = True

End Sub

The first will run automatically every time you open an existing document, and the second will run when you create a new document.

Was this answer helpful?

10+ people found this answer helpful.
0 comments No comments
Answer accepted by question author
Jay Freedman 208.3K Reputation points Volunteer Moderator
2013-04-19T03:51:09+00:00

That one's hidden about as deeply as possible. A lot of the things in the Options dialog are properties of the Options object in VBA, so you can say things like Options.Overtype = False. Controlling the draft font display is not one of those things. :-(

Actually, it's a throwback to Word 2003 and earlier. The Dialogs collection includes a member called Dialogs(wdDialogToolsOptionsView), which refers to a tab of the Options dialog that no longer exists (and of course the Options command isn't on the Tools menu, which doesn't exist). That dialog has an argument named DraftFont, which is a boolean (true/false) value. So this is how you do it:

Sub AutoOpen()

Dim dlg As Dialog

Set dlg = Dialogs(wdDialogToolsOptionsView)

With dlg

    .DraftFont = False

    .Execute

End With

ActiveWindow.View.Draft = True

End Sub

and similarly for AutoNew().

By the way, both your original problem and this one point the the probability that there's something amiss in your Windows registry, because these things should be saved there automatically. This trouble sometimes happens when you have certain third-party add-ins or other programs that interfere with Word's ability to write to the registry. There can also be misconfiguration of the permissions for certain parts of the registry. If you think that working with macros is harrowing, you don't want to know how to troubleshoot the registry. If these two macros solve the problem, leave well enough alone.

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

59 additional answers

Sort by: Oldest
  1. Anonymous
    2014-12-02T19:26:39+00:00

    You all are so right that unchecking "Use draft font in Draft and Outline views" got the fonts working again!  I wish I had posted here before calling MS Support.  I was really surprised at how little their “Assure” experts knew about their own software. I was teaching them keyboard shortcuts. (CRTL-ALT-N = switch to draft mode).

    I also didn’t know that you all would be so quick to respond here at MS Community.  Thanks! I will keep coming back.

    That being said, Stephan’s macro may work, but the “Idiots' guide to installing macros” that Jay Freedman posted (http://www.gmayor.com/installing_macro.htm) did not match what I saw on the screen with Word 2013. I tried to adapt it, and that is where “operator error” may have crept in.

    Do you have any advice about the best place to learn how to set up macros in Word 2013?  I think I need to learn the basics of macros before trying to change how every document opens.

    My situation is that I am trying to make the leap from Word 2002 to Word 2013.  I need to use as many keyboard shortcuts as possible because I have a disability that makes it difficult and painful to click the mouse.

    There are several other situations that used to be easy with keyboard shortcuts and now require many keystrokes.  Should I start a new discussion for each of those? For example :

    1. “Print current page” now requires about 10 keystrokes instead of 2. Is there a keyboard shortcut? I read online that I must create a macro.

    2.  After searching a Word document, switching from the “navigation pane” to the document used to be one tab key, now it’s impossible without mouse click -- according to paid “MS Assure” expert.   I do have a voice-activated mouse click through Dragon, but it takes a lot longer than a keystroke.

    There are more, but I'll stop here for now.  Thank you!

    Was this answer helpful?

    0 comments No comments
  2. Jay Freedman 208.3K Reputation points Volunteer Moderator
    2014-12-02T21:14:47+00:00

    Although it would eventually be useful to display the Developer tab on the ribbon in Word 2013 as described in step 1 of that article, you can use the shortcut Alt+F8 to open the Macros dialog box that's shown at the end of step 1. (I gather that this is the step you said didn't match what you saw on the screen.) From that point through step 7, there shouldn't be anything different.

    For a description of all the parts of the macro editor, you can look at Office Macro Editor, Part 1 and Part 2. That may help you to match the instructions to what you see.

    For the two issues you mentioned:

    1. There are literally hundreds of commands in Word that have no keyboard shortcut but can have one assigned. As predicted by Murphy's Law, "print current page" is not one of them, so you do need a macro, to which you can assign a shortcut of your choice. This is the code for the macro:

    Public Sub PrintCurrentPage()

       With Dialogs(wdDialogFilePrint)

          .Range = wdPrintCurrentPage

          .PrintToFile = False

          .Execute

       End With

    End Sub

    1. To return to the document body from the navigation pane, press the Esc key.

    If you have other similar issues, we'd prefer that you do start another thread, either a question or a discussion topic.

    Was this answer helpful?

    0 comments No comments
  3. Suzanne S Barnhill 279.4K Reputation points MVP Volunteer Moderator
    2014-12-02T22:44:11+00:00

    One other helpful hint about keyboard shortcuts: if you have been in the habit of using menu shortcuts (such as Alt, T, A to get to Tools | AutoCorrect Options), you can use these same shortcuts in Word 2013. There are also new shortcuts, on the same principle, for accessing the various tabs, groups, and buttons on the Ribbon.

    Was this answer helpful?

    0 comments No comments