As I wrote, large monitors have changed things... It's not unusual today
that over 100% zoom is required to get a single-page view, but 200% does
seem a lot. Out of curiosity, what size is your monitor?
What you can do is explicitly set the view to one page and then choose the
desired zoom. In Word 2007 or 2010, do so via the View tab (Zoom group).
However, this would have to be repeated for each affected document, and
therefore adding the following macros to the Normal template (see
http://www.gmayor.com/installing_macro.htm for more) will be more efficient:
Sub ZoomHundredPercentCentered()
On Error GoTo errhandler
ActiveWindow.View.Type = 3 'page layout view
With ActiveWindow.View.Zoom
.PageColumns = 1
.Percentage = 100 'specify a different percentage if you wish
End With
Exit Sub
errhandler:
Exit Sub
End Sub
Sub AutoOpen()
ZoomHundredPercentCentered
End Sub
Sub AutoNew()
ZoomHundredPercentCentered
End Sub
--
Stefan Blom
Microsoft Word MVP
---------------------------------------------
"Steve Hayes" wrote in message
Change the zoom. Try 100%, or possibly larger. (The optimal value depends
on
several factors: monitor size, monitor resolution, whether Word runs in a
maximized window.)
I've tried that, but then it does not show enough lines on the page to be
useful - at 100% it still shows 6 pages, and only at 200% does it show one
page. .
For (even) more control, you can use macros to set the zoom and number of
pages you want.
How does one do that?
Presumably the macro setting can also be used without a macro.