View Single Post
 
Old 10-17-2014, 09:45 PM
gmayor's Avatar
gmayor gmayor is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2014
Posts: 4,137
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

It is a change of behaviour, I believe related to the fact that Word 365 is aimed at working on a variety of platforms. If you want the documents to always open in a particular view, you could add an autoopen macro to the document to switch the view and save the document as macro enabled e.g..


Code:
Sub AutoOpen()
    ActiveWindow.View.Type = wdWebView
End Sub
http://www.gmayor.com/installing_macro.htm
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote