launching from outlook causes reading layout

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hello,
whenever i launch a document from outlook it always shows up in the reading
layout. how can i have it open in normal layout?

thanks
 
Two issues here
1. You should not 'launch documents from Outlook' it is much safer to save
them to the hard drive and open from there.
2. Tools > options > general > uncheck allow starting in reading layout.

To always open in 'normal' view regardless of the view saved in the document
requires the help of a macro:

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View
.Type = wdNormalView
.Zoom.Percentage = 100
End With
End Sub

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
cool!
many thanks your your help.


Graham Mayor said:
Two issues here
1. You should not 'launch documents from Outlook' it is much safer to save
them to the hard drive and open from there.
2. Tools > options > general > uncheck allow starting in reading layout.

To always open in 'normal' view regardless of the view saved in the document
requires the help of a macro:

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View
.Type = wdNormalView
.Zoom.Percentage = 100
End With
End Sub

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
You are welcome :)

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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

Similar Threads

symbols 8
Reading Layout 5
Cannot set layout to normal 4
Don't want Normal View 4
word layout question 2
How to "flip" pages in "Reading Layout". 1
Problem displaying images 1
Print Layout View 1

Back
Top