Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.newusers
fev@FUSE fev@FUSE is offline
external usenet poster
 
Posts: 1
Default set default page size to page width in zoom

Every time I open an existing word document, it opens to page width - far to
big to qork with. I prefer 100% width, by changing on the zoom buttons, but
despite saving with these changes, it doesn't save the page zoom size.

How do I get to the default zoom setting. Office 2007 with Vista.

Thanks
  #2   Report Post  
Posted to microsoft.public.word.newusers
BillW50 BillW50 is offline
external usenet poster
 
Posts: 6
Default set default page size to page width in zoom

In ,
fev@FUSE typed on Sun, 9 Aug 2009 08:12:01 -0700:
Every time I open an existing word document, it opens to page width -
far to big to qork with. I prefer 100% width, by changing on the zoom
buttons, but despite saving with these changes, it doesn't save the
page zoom size.

How do I get to the default zoom setting. Office 2007 with Vista.

Thanks


I'm an Office 2000 user so I don't know if I can help much. But under
Word 2000, I would rename the old Normal.dot and allow Word to create a
new one. Assuming the old one is corrupt. I don't know, but does Word
2007 still use Normal.dot files?

--
Bill
Gateway MX6124 ('06 era) - Windows XP SP2


  #3   Report Post  
Posted to microsoft.public.word.newusers
Terry Farrell Terry Farrell is offline
external usenet poster
 
Posts: 2,904
Default set default page size to page width in zoom

Documents should open in the view and zoom they were saved in. If you open a
document, make an edit that needs saving, change the Zoom and then save and
close the document, does it now open in the correct zoom?

--
Terry Farrell - MSWord MVP

"fev@FUSE" wrote in message
...
Every time I open an existing word document, it opens to page width - far
to
big to qork with. I prefer 100% width, by changing on the zoom buttons,
but
despite saving with these changes, it doesn't save the page zoom size.

How do I get to the default zoom setting. Office 2007 with Vista.

Thanks


  #4   Report Post  
Posted to microsoft.public.word.newusers
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
Default set default page size to page width in zoom

In Word 2007, the Normal template is called normal.dotm (the filename
extension indicates a macro-enabled template).

In this case, treating the template as corrupt would be overkill, though.
See Terry's reply.

--
Stefan Blom
Microsoft Word MVP



"BillW50" wrote in message
...
In ,
fev@FUSE typed on Sun, 9 Aug 2009 08:12:01 -0700:
Every time I open an existing word document, it opens to page width -
far to big to qork with. I prefer 100% width, by changing on the zoom
buttons, but despite saving with these changes, it doesn't save the
page zoom size.

How do I get to the default zoom setting. Office 2007 with Vista.

Thanks


I'm an Office 2000 user so I don't know if I can help much. But under Word
2000, I would rename the old Normal.dot and allow Word to create a new
one. Assuming the old one is corrupt. I don't know, but does Word 2007
still use Normal.dot files?

--
Bill
Gateway MX6124 ('06 era) - Windows XP SP2



  #5   Report Post  
Posted to microsoft.public.word.newusers
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default set default page size to page width in zoom

See http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org

"fev@FUSE" wrote in message
...
Every time I open an existing word document, it opens to page width - far
to
big to qork with. I prefer 100% width, by changing on the zoom buttons,
but
despite saving with these changes, it doesn't save the page zoom size.

How do I get to the default zoom setting. Office 2007 with Vista.

Thanks




  #6   Report Post  
Posted to microsoft.public.word.newusers
BillW50 BillW50 is offline
external usenet poster
 
Posts: 6
Default set default page size to page width in zoom

In ,
Stefan Blom typed on Sun, 9 Aug 2009 18:07:21 +0200:
In Word 2007, the Normal template is called normal.dotm (the filename
extension indicates a macro-enabled template).

In this case, treating the template as corrupt would be overkill,
though. See Terry's reply.

--
Stefan Blom
Microsoft Word MVP


Ah... thanks for the overview and the correction Stefan.

--
Bill
Gateway MX6124 ('06 era) - Windows XP SP2


  #7   Report Post  
Posted to microsoft.public.word.newusers
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
Default set default page size to page width in zoom

For more on this, see
http://word.mvps.org/faqs/general/SaveViewAndZoom.htm.

Also, note that if you want to force all documents, new and existing ones,
to open at a particular zoom, you could use auto macros such as the
following:

Sub AutoOpen()
ChangeTheZoom
End Sub

Sub AutoNew()
ChangeTheZoom
End Sub

Sub ChangeTheZoom()
With ActiveWindow.View
.Type = 3 ' Print Layout view (use 1 for Draft view)
.Zoom.Percentage = 100 ' specify the desired zoom
End With
End Sub

Sometimes you may also need to set a timer so that Word gets some time to
load the blank document created on startup:

Sub AutoExec()
Application.OnTime _
When:=Now + TimeValue("00:00:01"), Name:="ChangeTheZoom"
End Sub

Save the macros in normal.dotm (or in an add-in). For more, see
http://www.gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP



"Terry Farrell" wrote in message
...
Documents should open in the view and zoom they were saved in. If you open
a document, make an edit that needs saving, change the Zoom and then save
and close the document, does it now open in the correct zoom?

--
Terry Farrell - MSWord MVP

"fev@FUSE" wrote in message
...
Every time I open an existing word document, it opens to page width - far
to
big to qork with. I prefer 100% width, by changing on the zoom buttons,
but
despite saving with these changes, it doesn't save the page zoom size.

How do I get to the default zoom setting. Office 2007 with Vista.

Thanks








  #8   Report Post  
Posted to microsoft.public.word.newusers
JoAnn Paules JoAnn Paules is offline
external usenet poster
 
Posts: 4,241
Default set default page size to page width in zoom

Completely OT: Nice to see you back again. It was weird to not read posts
from you. :-)

--
JoAnn Paules
MVP Microsoft [Publisher]
Tech Editor for "Microsoft Publisher 2007 For Dummies"



"Suzanne S. Barnhill" wrote in message
...
See http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org

"fev@FUSE" wrote in message
...
Every time I open an existing word document, it opens to page width - far
to
big to qork with. I prefer 100% width, by changing on the zoom buttons,
but
despite saving with these changes, it doesn't save the page zoom size.

How do I get to the default zoom setting. Office 2007 with Vista.

Thanks



  #9   Report Post  
Posted to microsoft.public.word.newusers
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default set default page size to page width in zoom

Thanks, JoAnn. We had a *great* time in England. I've blogged about one
aspect of it at
http://walkthoughts.wordpress.com/20...-and-ale-tour/ and may
add more later (including baby pictures), but I'm still trying to get
"caught up."

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org

"JoAnn Paules" wrote in message
...
Completely OT: Nice to see you back again. It was weird to not read posts
from you. :-)

--
JoAnn Paules
MVP Microsoft [Publisher]
Tech Editor for "Microsoft Publisher 2007 For Dummies"



"Suzanne S. Barnhill" wrote in message
...
See http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org

"fev@FUSE" wrote in message
...
Every time I open an existing word document, it opens to page width -
far to
big to qork with. I prefer 100% width, by changing on the zoom buttons,
but
despite saving with these changes, it doesn't save the page zoom size.

How do I get to the default zoom setting. Office 2007 with Vista.

Thanks





  #10   Report Post  
Posted to microsoft.public.word.newusers
fev@FUSE[_2_] fev@FUSE[_2_] is offline
external usenet poster
 
Posts: 2
Default set default page size to page width in zoom

Thanks Terry,

Don't know why it didn't but it does now. Perhaps I didn't carry out an edit
before saving, but I did this and saved and all sorted,

Thank you,

Kev

"Terry Farrell" wrote:

Documents should open in the view and zoom they were saved in. If you open a
document, make an edit that needs saving, change the Zoom and then save and
close the document, does it now open in the correct zoom?

--
Terry Farrell - MSWord MVP

"fev@FUSE" wrote in message
...
Every time I open an existing word document, it opens to page width - far
to
big to qork with. I prefer 100% width, by changing on the zoom buttons,
but
despite saving with these changes, it doesn't save the page zoom size.

How do I get to the default zoom setting. Office 2007 with Vista.

Thanks





  #11   Report Post  
Posted to microsoft.public.word.newusers
fev@FUSE[_2_] fev@FUSE[_2_] is offline
external usenet poster
 
Posts: 2
Default set default page size to page width in zoom

Suzanne,


Very useful link there - thank you very much.

I have learned a thing or two about office files now.

All I had to do was make an edit in the text and save as I was just changing
the zoom and saving.

All sorted out now.


Thank you very much,

Kev


"Suzanne S. Barnhill" wrote:

See http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org

"fev@FUSE" wrote in message
...
Every time I open an existing word document, it opens to page width - far
to
big to qork with. I prefer 100% width, by changing on the zoom buttons,
but
despite saving with these changes, it doesn't save the page zoom size.

How do I get to the default zoom setting. Office 2007 with Vista.

Thanks



  #12   Report Post  
Posted to microsoft.public.word.newusers
Terry Farrell Terry Farrell is offline
external usenet poster
 
Posts: 2,904
Default set default page size to page width in zoom

Probably because changing zoom doesn't dirty the document to trigger a save
function on its own: it needs another 'real' edit.

Terry

"fev@FUSE" wrote in message
...
Thanks Terry,

Don't know why it didn't but it does now. Perhaps I didn't carry out an
edit
before saving, but I did this and saved and all sorted,

Thank you,

Kev

"Terry Farrell" wrote:

Documents should open in the view and zoom they were saved in. If you
open a
document, make an edit that needs saving, change the Zoom and then save
and
close the document, does it now open in the correct zoom?

--
Terry Farrell - MSWord MVP

"fev@FUSE" wrote in message
...
Every time I open an existing word document, it opens to page width -
far
to
big to qork with. I prefer 100% width, by changing on the zoom buttons,
but
despite saving with these changes, it doesn't save the page zoom size.

How do I get to the default zoom setting. Office 2007 with Vista.

Thanks



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
View - Zoom - Page width problem Brian Clarke New Users 1 December 5th 07 10:15 AM
zoom page width Harddrive747 Microsoft Word Help 6 October 30th 06 02:39 PM
Changing Reading view to page width zoom Skids Microsoft Word Help 12 March 31st 05 05:53 PM
Reading view in page width zoom Changing Reading view to page width zoom Microsoft Word Help 0 February 23rd 05 04:57 PM
Get Reading view in page width zoom Skids Page Layout 0 February 21st 05 07:53 AM


All times are GMT +1. The time now is 08:28 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"