Generally speaking, Print Preview opens at the Zoom ratio last used (even
when you don't want it to). Only if you try to compel it to use a specific
Zoom does it seem to get balky. <sigh>
Or to make sure that the Print Preview toolbar button acts like a
toggle, try the following code:
Sub FilePrintPreview()
If Application.PrintPreview Then
ActiveDocument.ClosePrintPreview
Else
ActiveWindow.View.Type = wdPrintPreview
ActiveWindow.View.Zoom = 100 'Or your desired value
End If
End Sub
Generally speaking, Print Preview opens at the Zoom ratio last used (even
when you don't want it to). Only if you try to compel it to use a specific
Zoom does it seem to get balky. <sigh>
Yes, annoying, isn't it? I'm hoping that my little macro should make
it possible to set a specific zoom level!
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.