Print Preview - default scale

G

Guest

When I open documents I would like scale to always be 100%, but when I open
documents its usually set less than 60%.

I try setting it to 100%, closing it, and reopen but it does not seem to
rember the last setting.

Is there a way to set default scale on Print Preview?

Thanks, Len
 
S

Stefan Blom

---Correction---

Use this macro instead:

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


If Application.PrintPreview Then
ActiveWindow.View.Zoom.Percentage = 100
End If
End Sub

--
Stefan Blom
Microsoft Word MVP



in message
 
G

Guest

Thanks for quick response!
I made slight modification, but this is macro that worked in the end for me:



Sub FilePrintPreview()

' FilePrintPreview Macro Displays full pages as they will be printed

ActiveDocument.PrintPreview

If Application.PrintPreview Then
ActiveWindow.View.Zoom.Percentage = 100
End If

End Sub
 
S

Stefan Blom

Glad I could help, and thank you for the feedback.

Note that your modified version prevents the File | Print Preview
command from acting as a toggle, since you are using the PrintPreview
*method*, which switches to print preview, but it doesn't close print
preview. However, the Close button on the Print Preview toolbar still
works (it runs the ClosePreview Word command).

--
Stefan Blom
Microsoft Word MVP


in message
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top