![]() |
#8
|
||||
|
||||
![]()
Hi Shay,
You could increase the zoom percentage from 100% to, say, 125%. Here's a macro I've developed. In addition to setting the zoom to maximum of 125% (less is used for documents that won't fit in that area - eg landscape A3 pages), the macro does a few other things: defaulting to Page Layout view, displaying the rulers and displaying the document's full path in Word's title bar. You can delete the code for any of those you're not interested in. Code:
Sub AutoOpen() With ActiveWindow 'Reduce flickering while changing settings .Visible = False 'Switch to Print Preview mode If .View.SplitSpecial = wdPaneNone Then .ActivePane.View.Type = wdPrintView Else .View.Type = wdPrintView End If With .ActivePane.View.Zoom 'Set for a 1-page view .PageColumns = 1 'Initialize for best fit .PageFit = wdPageFitBestFit 'Test zoom % and reduce to 125% max If .Percentage > 125 Then .Percentage = 125 End With 'Display the Rulers .ActivePane.DisplayRulers = True 'Displays the Document Path in the Title Bar .Caption = ActiveDocument.FullName 'Restore the window now that we're finished .Visible = True End With End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
alphabravo | Word Tables | 2 | 03-23-2011 09:32 AM |
Viewing problem | tglandon | Excel | 0 | 06-09-2010 08:33 AM |
How do i have automatic multi level lists in word 2007 | cedd82 | Word | 0 | 03-13-2010 06:01 PM |
varying orientation on a multi-page document??? | imimin | Word | 1 | 08-24-2009 12:12 PM |
Outlook 2002 / 2003 Mail viewing problem | Oahued | Outlook | 0 | 06-07-2006 05:13 PM |