View Single Post
 
Old 04-15-2011, 06:13 AM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2000
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
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 tpacheco,
Quote:
Is there any way to make a one-page view "stick" as a default view in Word preferences?
You can go close - the following macro sets a number of display options for any document as it is opened. You can change the various parameters, including addig/deleting where appropriate. To use it, simply add it to Word's 'Normal' template.
Code:
Sub AutoOpen()
With ActiveWindow
  'Force Print Preview mode
  If .View.SplitSpecial = wdPaneNone Then
    .ActivePane.View.Type = wdPrintView
  Else
    .View.Type = wdPrintView
  End If
  'Resizes to 125% and 1 page viewed
  With .ActivePane.View.Zoom
    .PageColumns = 1
    .Percentage = 125
  End With
  'Displays the Document Path in the Title Bar
  .Caption = ActiveDocument.FullName
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote