View Single Post
  #2   Report Post  
Graham Mayor
 
Posts: n/a
Default

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
Word MVP web site http://word.mvps.org




bluefiveva wrote:
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?