Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #8  
Old 04-21-2011, 01:57 PM
macropod's Avatar
macropod macropod is offline Office 2007 -- problem with multi page viewing Windows 7 32bit Office 2007 -- problem with multi page viewing Office 2000
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

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
To use it, simply add it to Word's 'Normal' template: it runs automatically every time you open a document.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Office 2007 -- problem with multi page viewing Problem with joinign tables and viewing them on a mobile device 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

Other Forums: Access Forums

All times are GMT -7. The time now is 06:27 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft