word 2007

P

Patches

when I open word it is three times larger than any normal screen. Have
deleated it and reloaded it and still get the same think any suggestions
 
G

Graham Mayor

What exactly is three times larger?

Is it the document text? Change the zoom setting -
http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm
or
You can control the zoom with auto macros in normal.dotm. 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. If you want normal (draft)
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()
With ActiveWindow.View
'**********************
.Type = wdPrintView
'.Type = wdNormalView
'**********************
.Zoom.Percentage = 100
End With
End Sub


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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top