View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom Stefan Blom is offline
external usenet poster
 
Posts: 8,428
Default Change print preview default %

Intercept the FilePrintPreview command with the following macro in
normal.dot:

Sub FilePrintPreview()
Application.PrintPreview = Not Application.PrintPreview

If Application.PrintPreview Then
ActiveWindow.View.Zoom.Percentage = 100
'If you don't want 100% zoom, use a different value.
End If

End Sub

If you need assistance, see http://gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


"pjpl55" wrote in message
...
How do I change the default size (%) in Word 2002 print preview?