Thread: shrinking table
View Single Post
  #4   Report Post  
Peter
 
Posts: n/a
Default

Many thanks

However when I now open the document I get a MS Visual Basic message that
"the macros in this project are diabled"

How do I enable them? (Word 2002)

Thanks


"garfield-n-odie" escreveu na
mensagem ...
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