print priview is opened in word set the default % size?

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

Guest

In print preview in word the default size is the full page on the screen.
Can the default % size be changed to something bigger so I can read my
document without changing the size?
 
You can intercept the command with vba and add the level of zoom you like eg
the following sets the zoom at 100%

Sub FilePrintPreview()
ActiveDocument.PrintPreview
ActiveWindow.ActivePane.View.Zoom.Percentage = 100
End Sub

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

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Usually Print Preview remembers the last-used Zoom setting (usually in the
most annoying way). Also, have you discovered the Magnifier tool?

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
Back
Top