Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Page Layout / February 2004

Tip: Looking for answers? Try searching our database.

"View" problems in Word 97

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
CBarryJ - 14 Feb 2004 11:11 GMT
When opening or creating  a document in Word it invariably opens in "Page Layout" view rather than defaulting to "Normal" which is what I want. This happens even if document has been saved in "normal" and applies to any documetn I open even if it is very old

The document also appears "Excell-like" as a piece of text in the corner of a massive page.

Print preview is accurate

Must have inadvertently pressed a "hot key" I think as have been using the programme for years

Help

Thanks
Graham Mayor - 14 Feb 2004 13:13 GMT
See if http://word.mvps.org/FAQs/Customization/CustomizeNormalTemplate.htm
helps

It appears that you may have two minor issues here relating to the opening
view. Views should retain the settings that were visible when you saved the
document, or in the case of new documents, the view saved in the template.

You can force the issue with a couple of macros -

Sub Autonew()
       With ActiveWindow.View
           .Type = wdNormalView
           .Zoom.Percentage = 100
       End With
End Sub

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View
   .Type = wdNormalView
   .Zoom.Percentage = 100
End With
End Sub

Signature

<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
    Graham Mayor -  Word MVP
      E-mail gmayor@mvps.org
     Web site www.gmayor.com
 Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>

> When opening or creating  a document in Word it invariably opens in
> "Page Layout" view rather than defaulting to "Normal" which is what I
[quoted text clipped - 12 lines]
>
> Thanks
CBarryJ - 14 Feb 2004 17:46 GMT
My thanks to Graham but I regret the actions suggested in the reference you gave have been only partially successful
1) for new documents the "normal" view they default to is not really normal as for example an A4 document just appears as part of a very large pag
2) creating an envelope does not offer WYSIWYG but it appears as a section with a section break at the start of the document/letter and not aligned correctly. Again going to Page preview all is fine as is printing
3) opening documents saved sometime ago does not work - they open with a different "view" an envelope shown as above - almost as though something is "recoding everything
4) Sadly my knowledge does not run to doing the macro changes you suggested

All other ideas very welcome.
Graham Mayor - 15 Feb 2004 06:52 GMT
As Suzanne has identified elsewhere in this thread, it appears that you want
Page Layout view and not Normal view. Normal is a particular draft view,
whereas Page layout is more of a wysiwyg view.

Microsoft changed the description of the page layout view to print layout
view after Word 97 - and unfortunately I can't remember if the vba command
changed also. Bottom line is you need to set the correct view and zoom
setting for your purposes and ensure that these settings are saved in
normal.dot - see http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm

I forgot to include the link http://www.gmayor.com/installing_macro.htm
which explains how to use macro listings from newsgroups, but the macro I
posted will select normal view whereas it needs to be changed to show page
layout. The revised code should be:

Sub Autonew()
       With ActiveWindow.View
           .Type = wdPrintView
           .Zoom.Percentage = 100
       End With
End Sub

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View
   .Type = wdPrintView
   .Zoom.Percentage = 100
End With
End Sub

Also on my web site you will find a specific envelope template
http://www.gmayor.com/downloads.htm#AirmailTemplate that you may find useful
(you can remove the graphic) or you could investigate
http://www.gmayor.com/changing_envelope_layout.htm which explains how to
configure envelopes.

Signature

<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
    Graham Mayor -  Word MVP
      E-mail gmayor@mvps.org
     Web site www.gmayor.com
 Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>

> My thanks to Graham but I regret the actions suggested in the
> reference you gave have been only partially successful. 1) for new
[quoted text clipped - 9 lines]
>
> All other ideas very welcome.
Suzanne S. Barnhill - 14 Feb 2004 15:27 GMT
In Word 97 and above, even if you press Save, Word will not really save the
document unless it has "changed." So if you just open a document, change the
view, and "save" it, the new view is not saved. What you have to do is
change the view, then make a "phantom edit" such as pressing Spacebar, then
Backspace (anything to enable the Undo button), then save.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Signature

Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://www.word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.


> When opening or creating  a document in Word it invariably opens in "Page Layout" view rather than defaulting to "Normal" which is what I want. This
happens even if document has been saved in "normal" and applies to any
documetn I open even if it is very old.

> The document also appears "Excell-like" as a piece of text in the corner of a massive page.
>
[quoted text clipped - 5 lines]
>
> Thanks
CBarryJ - 14 Feb 2004 17:56 GMT
My thanks to Suzanne.

I had spotted this "trick" in your reference papers.

I think I may have posed the question badly.

How do I reinstate a "normal" view which does not present my document as a small part of an enormous page (making layout etc very difficult without constant switching between preview and the working sheet? Similarly how do I get envelopes to show as such and not a section?

Why should it be that previously saved documents when opened now have the same faults?

Thanks in advance.

   
    ----- Suzanne S. Barnhill wrote: -----
   
    In Word 97 and above, even if you press Save, Word will not really save the
    document unless it has "changed." So if you just open a document, change the
    view, and "save" it, the new view is not saved. What you have to do is
    change the view, then make a "phantom edit" such as pressing Spacebar, then
    Backspace (anything to enable the Undo button), then save.
   
    --
    Suzanne S. Barnhill
    Microsoft MVP (Word)
    Words into Type
    Fairhope, Alabama USA
    Word MVP FAQ site: http://www.word.mvps.org
    Email cannot be acknowledged; please post all follow-ups to the newsgroup so
    all may benefit.
   
    "CBarryJ" <barry(deletethis)@jennyandbarry.com> wrote in message
    news:76593FA1-864F-4AF0-B178-298589DA2100@microsoft.com...
    > When opening or creating  a document in Word it invariably opens in "Page
    Layout" view rather than defaulting to "Normal" which is what I want. This
    happens even if document has been saved in "normal" and applies to any
    documetn I open even if it is very old.
    >> The document also appears "Excell-like" as a piece of text in the corner
    of a massive page.
    >> Print preview is accurate.
    >>> Must have inadvertently pressed a "hot key" I think as have been using the
    programme for years.
    >> Help!
    >> Thanks
Suzanne S. Barnhill - 14 Feb 2004 23:27 GMT
I suspect that part of the problem (and the reason Graham's macro didn't
work) is that what you were asking for was a "normal" view, not Normal view.
From your description it sounds as if Normal view was what you had and Print
Layout what you were looking for.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Signature

Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://www.word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.


> My thanks to Suzanne.
>
[quoted text clipped - 3 lines]
>
> How do I reinstate a "normal" view which does not present my document as a small part of an enormous page (making layout etc very difficult without
constant switching between preview and the working sheet? Similarly how do I
get envelopes to show as such and not a section?

> Why should it be that previously saved documents when opened now have the same faults?
>
[quoted text clipped - 30 lines]
>      >> Help!
>      >> Thanks
cbarryj - 14 Feb 2004 18:31 GMT
    PROBLEM SOLVED - MY THANKS TO SUZANNE AND GRAHAM
    ----- CBarryJ wrote: -----
   
    When opening or creating  a document in Word it invariably opens in "Page Layout" view rather than defaulting to "Normal" which is what I want. This happens even if document has been saved in "normal" and applies to any documetn I open even if it is very old.
   
    The document also appears "Excell-like" as a piece of text in the corner of a massive page.
   
    Print preview is accurate.
   
   
    Must have inadvertently pressed a "hot key" I think as have been using the programme for years.
   
    Help!
   
    Thanks
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.