PDA

View Full Version : Default view size in Print Preview



Nanwil
01-03-2005, 09:06 AM
When I display a single page document in Print Preview mode in Word 2000 it always displays at 40% and multiple pages display at 13%. Is there a way to make the default view size larger than 40% for a single page? Thanks for any replies.....

hairywhiterabbit
01-06-2005, 05:29 PM
Hi,


You can intercept the print preview command and put in your own code:

Add the following to any module of your workbook.

Sub FilePrintPreview()


ActiveDocument.PrintPreview
ActiveWindow.ActivePane.View.Zoom.Percentage = 67

End Sub

If you press Alt+F8 and select 'Word Commands' you will see all the available options.

Cheers,
Andrew

mdmackillop
01-06-2005, 05:45 PM
Open Normal.dot (or the document template), set the zoom in Preview to the required size and then save.
MD