View Single Post
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Cone Cone is offline
external usenet poster
 
Posts: 7
Default Change print preview default %

Is there an easier way? For some reason my preview is now coming up at 10%
and not 100% and i know that i never went into the macro (because i don't
know how to intercept a command in a macro. Sorry not too computer savy.
thanks

"Stefan Blom" wrote:

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?