Word 2003 default view for opening .rtf attachments.

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

Guest

I receive dozens of email per day in Word 2003 .rtf format. I would like to
open these attachments in "print layout view" (so I may see the whole
document at a glance). How do I make this the default view, thereby avoiding
unwanted trips to the "View" menu bar?
 
Tools > options > view > uncheck allow starting in reading layout
Create an autoopen macro containing at least the following:

With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
End With

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top