Registry setting that will *permanently* keep Reading Layout "off"

K

kyot58

I really dislike the Reading Layout view. Every time I open an email
attachment from Outlook, it comes back. I have turned it off countless times
in Tools> Options> General > clear the check box for Allow starting in
Reading Layout. Is there a registry setting that will permanently do this? I
am using Word 2003. Thanks for anyone's help here.
 
S

Stefan Blom

You can use a couple of auto macros in your Normal template (or add the code
to these macros if they already exist):

Sub AutoOpen()
Options.AllowReadingMode = False
End Sub

Sub AutoNew()
Options.AllowReadingMode = False
End Sub

For assistance, see http://www.gmayor.com/installing_macro.htm.
 

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