Word 2007

  • Thread starter Thread starter Geoff
  • Start date Start date
G

Geoff

When opening a document, or creating a new document, the view is always less
than 100% - its seems to be around 75%.

How can I set a default to always open at 100%?

Thanks
 
Change the zoom setting -
http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm
or
You can control the zoom with auto macros in normal.dot. The following will
set it to 100% zoom regardless of what the document thinks it should be.
Change the 100 to any preferred zoom level. I have included also some of the
other regular problem fixes, but you can remove the extra lines if required.
If you want normal rather than print layout view swap the apostrophe from
the beginning of the line where indicated to the other.

See http://www.gmayor.com/installing_macro.htm

Sub AutoNew()
With ActiveWindow.View
'**********************
.Type = wdPrintView
'.Type = wdNormalView
'**********************
.Zoom.Percentage = 100
End With
End Sub

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View

'**********************
.Type = wdPrintView
'.Type = wdNormalView
'**********************
.Zoom.Percentage = 100
End With
End Sub

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
'Geoff[_2_ said:
;375997']When opening a document, or creating a new document, the vie
is always less
than 100% - its seems to be around 75%.

How can I set a default to always open at 100%?

Thanks


i`m not really understand with word 2007 because its new for me.
But if i not false, you can go to options and setting for zoom what yo
want. and after that safe.
So everytime you open you doc, you always open at 100
 
Thanks Graham.


Graham Mayor said:
Change the zoom setting -
http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm
or
You can control the zoom with auto macros in normal.dot. The following
will set it to 100% zoom regardless of what the document thinks it should
be. Change the 100 to any preferred zoom level. I have included also some
of the other regular problem fixes, but you can remove the extra lines if
required. If you want normal rather than print layout view swap the
apostrophe from the beginning of the line where indicated to the other.

See http://www.gmayor.com/installing_macro.htm

Sub AutoNew()
With ActiveWindow.View
'**********************
.Type = wdPrintView
'.Type = wdNormalView
'**********************
.Zoom.Percentage = 100
End With
End Sub

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View

'**********************
.Type = wdPrintView
'.Type = wdNormalView
'**********************
.Zoom.Percentage = 100
End With
End Sub

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
As far as the zoom and view are concerned, the same rules still apply to
Word 2007. See http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm.

--
Stefan Blom
Microsoft Word MVP



Hendry_Budiman said:
'Geoff[_2_ said:
;375997']When opening a document, or creating a new document, the view
is always less
than 100% - its seems to be around 75%.

How can I set a default to always open at 100%?

Thanks


i`m not really understand with word 2007 because its new for me.
But if i not false, you can go to options and setting for zoom what you
want. and after that safe.
So everytime you open you doc, you always open at 100%
 
Back
Top