PC Review


Reply
Thread Tools Rate Thread

Page layout view - one page at a time

 
 
Steve Hayes
Guest
Posts: n/a
 
      21st Feb 2012
I have been given a Word document to edit, madn when I open it in page layout
view there are six pages on the screen, in three rows of two, though I have to
scroll down to see all of them.

How can I change it so that I just see one page on the screen in page payout
view?




--
Steve Hayes from Tshwane, South Africa
Blog: http://khanya.wordpress.com
E-mail - see web page, or parse: shayes at dunelm full stop org full stop uk
 
Reply With Quote
 
 
 
 
Stefan Blom
Guest
Posts: n/a
 
      21st Feb 2012
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.)

For (even) more control, you can use macros to set the zoom and number of
pages you want.

-- 
Stefan Blom
Microsoft Word MVP




---------------------------------------------
"Steve Hayes" wrote in message
news:(E-Mail Removed)...

I have been given a Word document to edit, madn when I open it in page
layout
view there are six pages on the screen, in three rows of two, though I have
to
scroll down to see all of them.

How can I change it so that I just see one page on the screen in page payout
view?




--
Steve Hayes from Tshwane, South Africa
Blog: http://khanya.wordpress.com
E-mail - see web page, or parse: shayes at dunelm full stop org full stop uk


 
Reply With Quote
 
 
 
 
Steve Hayes
Guest
Posts: n/a
 
      22nd Feb 2012
On Tue, 21 Feb 2012 20:15:03 +0100, "Stefan Blom"
<(E-Mail Removed)> wrote:

>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.


--
Steve Hayes from Tshwane, South Africa
Blog: http://khanya.wordpress.com
E-mail - see web page, or parse: shayes at dunelm full stop org full stop uk
 
Reply With Quote
 
Stefan Blom
Guest
Posts: n/a
 
      22nd Feb 2012
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
news:(E-Mail Removed)...

On Tue, 21 Feb 2012 20:15:03 +0100, "Stefan Blom"
<(E-Mail Removed)> wrote:

>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.


--
Steve Hayes from Tshwane, South Africa
Blog: http://khanya.wordpress.com
E-mail - see web page, or parse: shayes at dunelm full stop org full stop uk

 
Reply With Quote
 
Steve Hayes
Guest
Posts: n/a
 
      22nd Feb 2012
On Wed, 22 Feb 2012 10:59:14 +0100, "Stefan Blom"
<(E-Mail Removed)> wrote:

>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?


Thanks very muc for the reply.

My desktop machine's monitor is 370mm diagonal, and my laptop is 390mm, but
the laptop one is somewhat deeper vertically.

>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:


It's only one document that is causing the problem -- all others display
normally.

But I think I may have found the problem - it seems to have been set to some
weird paper size, and perhaps using a standard paper size will fix the
problem.


--
Steve Hayes from Tshwane, South Africa
Blog: http://khanya.wordpress.com
E-mail - see web page, or parse: shayes at dunelm full stop org full stop uk
 
Reply With Quote
 
Stefan Blom
Guest
Posts: n/a
 
      22nd Feb 2012
OK, I'm glad you got it sorted!

Thanks for the follow-up.

-- 
Stefan Blom
Microsoft Word MVP




---------------------------------------------
"Steve Hayes" wrote in message
news:(E-Mail Removed)...

On Wed, 22 Feb 2012 10:59:14 +0100, "Stefan Blom"
<(E-Mail Removed)> wrote:

>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?


Thanks very muc for the reply.

My desktop machine's monitor is 370mm diagonal, and my laptop is 390mm, but
the laptop one is somewhat deeper vertically.

>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:


It's only one document that is causing the problem -- all others display
normally.

But I think I may have found the problem - it seems to have been set to some
weird paper size, and perhaps using a standard paper size will fix the
problem.


--
Steve Hayes from Tshwane, South Africa
Blog: http://khanya.wordpress.com
E-mail - see web page, or parse: shayes at dunelm full stop org full stop uk


 
Reply With Quote
 
Steve Hayes
Guest
Posts: n/a
 
      22nd Feb 2012
On Wed, 22 Feb 2012 13:10:50 +0100, "Stefan Blom"
<(E-Mail Removed)> wrote:

>OK, I'm glad you got it sorted!
>
>Thanks for the follow-up.


Sort of, but not quite.

The guy who typed the document made a real mess of the formatting.

I managed to get one page to display.

I created a document using one of my templates (for a book MS), then
"inserted" the other file at the end.

Opened up the Page setup, and asked it to apply the margins etc to the whole
document.

But it doesn't - from page 3 onwards the pages are smaller on the screen and
the margins are different.

Am I missing something?


--
Steve Hayes from Tshwane, South Africa
Blog: http://khanya.wordpress.com
E-mail - see web page, or parse: shayes at dunelm full stop org full stop uk
 
Reply With Quote
 
Stefan Blom
Guest
Posts: n/a
 
      22nd Feb 2012
In the Page Setup dialog box, selecting "Whole document" for "Apply to"
should work. If it doesn't, see if the inserted text has indentation applied
to it.

-- 
Stefan Blom
Microsoft Word MVP




---------------------------------------------
"Steve Hayes" wrote in message
news(E-Mail Removed)...

On Wed, 22 Feb 2012 13:10:50 +0100, "Stefan Blom"
<(E-Mail Removed)> wrote:

>OK, I'm glad you got it sorted!
>
>Thanks for the follow-up.


Sort of, but not quite.

The guy who typed the document made a real mess of the formatting.

I managed to get one page to display.

I created a document using one of my templates (for a book MS), then
"inserted" the other file at the end.

Opened up the Page setup, and asked it to apply the margins etc to the whole
document.

But it doesn't - from page 3 onwards the pages are smaller on the screen and
the margins are different.

Am I missing something?


--
Steve Hayes from Tshwane, South Africa
Blog: http://khanya.wordpress.com
E-mail - see web page, or parse: shayes at dunelm full stop org full stop uk


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
WEB LAYOUT VIEW vs PAGE LAYOUT VIEW lcsquare Microsoft Word Document Management 1 27th Jun 2008 05:52 AM
Choosing Layout: Css-Layout or Table-Layout hpourfard@gmail.com Microsoft ASP .NET 1 19th Jun 2006 11:06 AM
Change attachment view to "print layout" from "reading layout"? =?Utf-8?B?RGFuaWVsbGU=?= Microsoft Outlook Discussion 1 17th Jan 2006 09:31 PM
How to change the default view of an e-mail message to "web layout" when I reply to messages? The default view is Normal now. The text uses left one third of the screen only. Dmitriy Kopnichev Microsoft Outlook Discussion 0 26th Jan 2004 11:27 AM
How to change the default view of an e-mail message to "web layout" when I reply to messages? The default view is Normal now. The text uses left one third of the screen only. Dmitriy Kopnichev Microsoft Outlook 0 26th Jan 2004 11:27 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:51 PM.