Share via

Making Web View the default

Anonymous
2013-07-17T14:09:29+00:00

I mostly work in web view these days. How can I make web view the default view, when I open Word 2013? Word always opens in print view, even though I set the Normal.dotm template to web view.

It works in 2010 (when I set the Normal template to web view, Word 2010 opens in web view by default), why doesn't it work in 2013?

Anything I can do about this, like maybe a registry edit, or anything else? Anyone any suggestions?

(Before you answer, understand that I'm not a programming/coding guru)

Thanks in advance.

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 207.7K Reputation points Volunteer Moderator
2013-07-17T17:59:20+00:00

Sorry about the AutoNew macro; it looks like Word 2013 doesn't trigger the New command when it makes the blank document at startup.

The problem with AutoExec is that at the time that macro runs, there is no document and therefore no ActiveWindow or View to set the type in. That requires a workaround, similar to the one in http://www.word.mvps.org/FAQs/Userforms/AutoExecUsertFm.htm. I've verified that this works:

Sub AutoExec()

    Application.OnTime _

        When:=Now + TimeValue("00:00:01"), _

        Name:="WebView"

End Sub

Sub WebView()

    ActiveWindow.View.Type = wdWebView

End Sub

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

11 additional answers

Sort by: Most helpful
  1. Anonymous
    2013-07-17T15:26:57+00:00

    Tried that, but Word still opens in normal view instead of web view.

    I'm at a loss here, thanks for trying to help though.

    Was this answer helpful?

    0 comments No comments
  2. Jay Freedman 207.7K Reputation points Volunteer Moderator
    2013-07-17T15:20:37+00:00

    In that case, make a copy of the macro and, in the first line of the copy, change AutoOpen to AutoNew. Leave both macros in place.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2013-07-17T14:26:52+00:00

    Thanks, but not really what I meant.

    This macro works to open existing docs in web view, but I want web view to be the default view when I open Word itself, not when I open an existing document. I want Word itself to open up in web view.

    I'm sorry if I wasn't clear in my question.

    Was this answer helpful?

    0 comments No comments
  4. Jay Freedman 207.7K Reputation points Volunteer Moderator
    2013-07-17T14:21:20+00:00

    Follow the instructions in the article http://smallbusiness.chron.com/make-print-layout-default-layout-microsoft-word-45080.html, with one exception: In step 6, instead of the line

       ActiveWindow.View.Type = wdPrintView

    put in the line

       ActiveWindow.View.Type = wdWebView

    Was this answer helpful?

    0 comments No comments