Can I permanently disable Reading Layout?

G

Guest

I know that I can disable Reading Layout using Tools/Options, clicking the
General tab and unchecking "Allow starting in Reading Layout". But if I clear
my cache and temp files, which I do from time to time, it defaults to Reading
Layout. Is it possible to disable it permanently?
 
J

Jay Freedman

MartynW said:
I know that I can disable Reading Layout using Tools/Options,
clicking the General tab and unchecking "Allow starting in Reading
Layout". But if I clear my cache and temp files, which I do from time
to time, it defaults to Reading Layout. Is it possible to disable it
permanently?

Add these macros to the ThisDocument module of the Normal.dot template:

Private Sub Document_New()
Options.AllowReadingMode = False
End Sub

Private Sub Document_Open()
Options.AllowReadingMode = False
End Sub

See http://www.gmayor.com/installing_macro.htm if needed.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
G

Guest

Can you prevent an outgoing document from appearing in "READING" Layout once
it is opened? I beleive this is strictly a personal preference of the
recepient, correct?
 
J

Jay Freedman

That's correct, the sender has no control over the view; only the recipient
can determine that.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 

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