View Single Post
  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Change print preview default %

Cretaing a macro with the same name as a built-in command intercepts that
command, so simply installing the macro -
http://www.gmayor.com/installing_macro.htm - would intercept the
PrintPreview command.

--

Graham Mayor - Word MVP

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



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