View Single Post
  #3   Report Post  
Posted to microsoft.public.word.pagelayout
Graham Mayor
 
Posts: n/a
Default How do I get WORD to open in print layout every time?

Suzanne likes to avoid vba but the view can be forced using auto macros.
An autoopen and an autonew macro in normal.dot each containing the lines

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

will open every document at 100% (the zoom to 500% first fixes an occasional
bug that affects cursor size)
See http://www.gmayor.com/installing_macro.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


CTK wrote:
When I open WORD doccuments, it changes the viewing screen and I need
to select Print Layout every time. How do I set print layout?