Word 2003 Reading View

J

Jeff Reimer

Hi,
I need to have word open in reading view mode in 2003. Does anyone knw how
to make this happen. No one seems to know how to do this
 
S

Suzanne S. Barnhill

If you have "Allow starting in Reading Layout" checked on the General tab of
Tools | Options, it will be automatic when you open an email attachment. But
that is the only way it can be achieved (short of a macro). I don't believe
documents can be saved to open in that view.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org
 
S

Stefan Blom

Place these macros in normal.dot:

Sub AutoExec()
Application.OnTime _
When:=Now + TimeValue("00:00:02"), Name:="ChangeTheView"
End Sub

Sub AutoOpen()
ChangeTheView
End Sub

Sub AutoNew()
ChangeTheView
End Sub

Sub ChangeTheView()
ActiveWindow.View = 7
End Sub
 
J

Jeff Reimer

this worked

thanks


Stefan Blom said:
Place these macros in normal.dot:

Sub AutoExec()
Application.OnTime _
When:=Now + TimeValue("00:00:02"), Name:="ChangeTheView"
End Sub

Sub AutoOpen()
ChangeTheView
End Sub

Sub AutoNew()
ChangeTheView
End Sub

Sub ChangeTheView()
ActiveWindow.View = 7
End Sub
 

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