Turn off "Automatically Update Style"?

E

Ed

I edit reports created by others, and I have no control over how they
present the document to me. I am using Word 2000. Lately, I have made a
small change and watched the document go crazy! Going to the Undo menu, I
have noticed the item I will Undo is "Automatically Update Style".

Is this a setting that can be permanently and globally set on my machine to
prevent any style form automatically updating? Or is this going to be
peculiar to whatever style is in the document being worked on? Is it
possible to create a macro that will go through a document and turn off this
update "feature" for each style in the doc?

Thank you.
Ed
 
G

Greg

Ed,

Try,

Sub AutoOpen()
Dim oStyle As Style
For Each oStyle In ActiveDocument.Styles
oStyle.AutomaticallyUpdate = False
Next
End Sub
 

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