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>
--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
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>
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.