Thread: shrinking table
View Single Post
  #3   Report Post  
garfield-n-odie
 
Posts: n/a
Default

Hi, Peter. See
http://www.word.mvps.org/FAQs/Genera...iewAndZoom.htm. An
alternative method would be to create an AutoOpen() macro that opens
this particular document at the specified zoom:

Sub AutoOpen()
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 140
End With
End Sub

If you don't know how to install a macro, see
http://www.gmayor.com/installing_macro.htm .


Peter wrote:

I have a table set at 140%. Often when I open the file it resizes itself to
100%. I save it again at 140% but it keeps resizing itself.

What is happening?

Tnaks