![]() |
|
#1
|
|||
|
|||
![]() I am using office 2007 and windows vista. I got a new monitor today 23' and when I open word if I set the zoom to 100% it shows me two pages on the same screen. I find this very aggravating, and would like to just disable multi-page viewing. I have done some searching around and have been unable to find any solutions. I am wondering if perhaps a work around may be to have word run in a different resolution? Although I am not sure how to do that exactly. ![]() ![]() Does anyone know how to do this or a solution at all? Thanks so much in advance! |
#2
|
||||
|
||||
![]()
Hi Sn0w,
Have you tried using the 'one page' display setting?
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
#3
|
|||
|
|||
![]()
Hello
![]() I have indeed, what it does is shrink the zoom to 80%, and if I increase that at all it splits the page again. ![]() I have found that if I do not maximize the window and manually size it i can keep one page only, but as soon as I make the window a certain size it splits it. |
#4
|
||||
|
||||
![]()
Hi Shay,
I see you've posted the same question at: http://answers.microsoft.com/en-us/o...c-68b599b31bf5 For cross-posting etiquette, please read: http://www.excelguru.ca/node/7
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
#5
|
|||
|
|||
![]() Quote:
|
#6
|
||||
|
||||
![]()
That's OK. Do let us know how you get on.
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
#7
|
|||
|
|||
![]()
Hello again, sorry for the long delay I have been busy with finishing my courses for the semester. I have tried that solution but found the macro coding a bit confusing, I did make some progress and I have updated the post on the microsoft site. I will repaste that information here as well
http://answers.microsoft.com/en-us/o...6810867#footer Quote:
|
#8
|
||||
|
||||
![]()
Hi Shay,
You could increase the zoom percentage from 100% to, say, 125%. Here's a macro I've developed. In addition to setting the zoom to maximum of 125% (less is used for documents that won't fit in that area - eg landscape A3 pages), the macro does a few other things: defaulting to Page Layout view, displaying the rulers and displaying the document's full path in Word's title bar. You can delete the code for any of those you're not interested in. Code:
Sub AutoOpen() With ActiveWindow 'Reduce flickering while changing settings .Visible = False 'Switch to Print Preview mode If .View.SplitSpecial = wdPaneNone Then .ActivePane.View.Type = wdPrintView Else .View.Type = wdPrintView End If With .ActivePane.View.Zoom 'Set for a 1-page view .PageColumns = 1 'Initialize for best fit .PageFit = wdPageFitBestFit 'Test zoom % and reduce to 125% max If .Percentage > 125 Then .Percentage = 125 End With 'Display the Rulers .ActivePane.DisplayRulers = True 'Displays the Document Path in the Title Bar .Caption = ActiveDocument.FullName 'Restore the window now that we're finished .Visible = True End With End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
alphabravo | Word Tables | 2 | 03-23-2011 09:32 AM |
Viewing problem | tglandon | Excel | 0 | 06-09-2010 08:33 AM |
How do i have automatic multi level lists in word 2007 | cedd82 | Word | 0 | 03-13-2010 06:01 PM |
varying orientation on a multi-page document??? | imimin | Word | 1 | 08-24-2009 12:12 PM |
Outlook 2002 / 2003 Mail viewing problem | Oahued | Outlook | 0 | 06-07-2006 05:13 PM |