How to open in Print View at 100% size?

K

keith brickey

Can someone tell me how to force a document to open in Print View at a size
of 100%?

Thanks,

Keith
 
J

Jean-Guy Marcil

Bonjour,

Dans son message, < keith brickey > écrivait :
In this message, < keith brickey > wrote:

|| Can someone tell me how to force a document to open in Print View at a
size
|| of 100%?
||

Use this Sub in the ThisDocument module of the document:

'_______________________________________
Private Sub Document_Open()

With ActiveWindow
.View.Type = wdPrintView
.ActivePane.View.Zoom.Percentage = 100
End With

End Sub
'_______________________________________

--
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
[email protected]
Word MVP site: http://www.word.mvps.org
 
Top