Making Web View the default

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.
Answer
Answer
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

_____________________________
https://jay-freedman.info

1 person found this reply helpful

·

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

 
 

Question Info


Last updated January 3, 2023 Views 2,629 Applies to: