![]() |
|
#1
|
|||
|
|||
|
The only way this works is if I go to View-->Zoom, click on "Many pages" and change it to 1x1. But this will only let me view at 87% zoom. If I press the up arrow to change that number, it shows 2 pages at a time. Using Print view shows either 2 or 4 pages at a time depending on the zoom. I'd rather not use Focus view since I need to format as well. Is there a way to view 1 page only at 100%? Thanks in advane. |
|
#2
|
||||
|
||||
|
I use a macro to control the page display on my PC but, IIRC, you should be able to get what you want via Zoom>Many Pages>1*1>100%>OK.
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
#3
|
|||
|
|||
|
Macro,
I tried that earlier and unfortunately, it doesn't work. When I try what you suggested, the radio button either changes to something else, or it simply changes to two pages side-by-side. What is the macro you use for this? Thanks. |
|
#4
|
||||
|
||||
|
The macros I use are below. They go in the Normal template's 'ThisDocument' module.
Code:
Private Sub Document_New()
'Ignore any errors
On Error Resume Next
Call Document_Open
End Sub
Private Sub Document_Open()
With ActiveWindow
'Ignore any errors
On Error Resume Next
'Reduce flickering while changing settings
.Visible = False
'Switch to a single view pane
.View.SplitSpecial = wdPaneNone
'Switch to Normal mode
.View.Type = wdNormalView
With .ActivePane.View.Zoom
'Set for a 1-page view
.PageColumns = 1
'Initialize for best fit
.PageFit = wdPageFitBestFit
'Test zoom % and reduce to 120% max
If .Percentage > 120 Then .Percentage = 120
End With
'Switch to Print Preview mode
.View.Type = wdPrintView
With .ActivePane.View.Zoom
'Set for a 1-page view
.PageColumns = 1
'Initialize for best fit
.PageFit = wdPageFitBestFit
'Test zoom % and reduce to 120% max
If .Percentage > 120 Then .Percentage = 120
End With
'Display the Rulers
.ActivePane.DisplayRulers = True
'Hide the mailmerge task pane
CommandBars("Mail Merge Panes").Visible = False
'Restore the window now that we're finished
.Visible = True
End With
End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Change Default Zoom Size to 'Page Width'
|
tyger330 | Word | 9 | 12-19-2012 07:50 AM |
MailMerge - Time showing 12:30 instead of 0:30
|
Chris424 | Mail Merge | 2 | 11-17-2011 05:51 AM |
Meeting Appointment Not Showing Local Time
|
april | Outlook | 2 | 06-23-2011 08:57 AM |
Why Word goes to the first page each time we open the document?
|
Jamal NUMAN | Word | 1 | 04-14-2011 04:27 AM |
Page opens at 175% zoom. How can I reset the default?
|
Renee Hendershott | Word | 2 | 01-22-2006 06:59 PM |