![]() |
|
|
|
#1
|
||||
|
||||
|
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 |
|
#2
|
||||
|
||||
|
Hi Stefan,
You don't really need the first 'Exit Sub'.
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
#3
|
||||
|
||||
|
You're right, of course. In this case, the error handler simply exits, so the previous Exit Sub command is superfluous. Thank you!
Now I have fixed it too. :-)
__________________
Stefan Blom Microsoft Word MVP Microsoft 365 apps for business Windows 11 Professional |
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
How do you mass change "Text to Display" on hyperlinks
|
lvillanueva5 | Mail Merge | 1 | 09-10-2012 05:32 PM |
Mailing: how to make the "page number" in Word is the same as "row number" in excel w
|
Jamal NUMAN | Word | 1 | 09-03-2011 11:37 AM |
How to choose a "List" for certain "Heading" from "Modify" tool?
|
Jamal NUMAN | Word | 2 | 07-03-2011 03:11 AM |
Word 2010: "Screen shot" and "Print Screen" and fitting the page boundaries!
|
Jamal NUMAN | Word | 4 | 06-30-2011 05:48 PM |
Help - how can we contral "Document Map" display?
|
Lee | Word | 2 | 02-04-2011 12:58 PM |