View Single Post
 
Old 12-01-2012, 11:26 AM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline Windows 7 64bit Office 2010 32bit
Moderator
 
Join Date: Aug 2011
Posts: 4,005
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

The behavior is by design. The zoom level at which Word displays a single page, centered in your monitor, depends on the monitor size and resolution. What you can do is run a macro as follows:

Code:
Sub ChangeTheZoomAsDesired()
On Error GoTo errhandler
ActiveWindow.View.Type = 3
With ActiveWindow.View.Zoom
  .PageColumns = 1
  .Percentage = 120
End With
errhandler:
Exit Sub
End Sub
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional

Last edited by Stefan Blom; 12-03-2012 at 03:15 AM. Reason: Removing unnecessary line of code
Reply With Quote