Disabling change tracking once and for all

W

Wowbagger

Is there a way to remove the change tracking features from Word 2k3? I will
never have any need for them and have them turned off by default, but
sometimes tracked changes will reappear in a file sent from somebody else.
If possible, I'd like to tell Word that I never want to see any change
tracking no matter what.

--
Thanks

"He had had his immortality thrust upon him by an unfortunate accident with
an irrational particle accelerator, a liquid lunch and a pair of rubber
bands. The precise details of the accident are not important because no one
has ever managed to duplicate the exact circumstances under which it
happened, and many people have ended up looking very silly, or dead, or
both, trying."
 
J

Jay Freedman

Wowbagger said:
Is there a way to remove the change tracking features from Word 2k3? I will
never have any need for them and have them turned off by default, but
sometimes tracked changes will reappear in a file sent from somebody else.
If possible, I'd like to tell Word that I never want to see any change
tracking no matter what.

No, you can't remove the feature or permanently disable it. However,
if you're really sure you never want to see any revisions from
anybody, you can put this macro into your Normal.dot so you won't have
to fool with them:

Sub AutoOpen()
' turn off tracking
If ActiveDocument.TrackRevisions Then
ActiveDocument.TrackRevisions = False
End If

' accept all previous changes
If ActiveDocument.Revisions.Count Then
ActiveDocument.Revisions.AcceptAll
End If
End Sub
 
W

Wowbagger

thanks

Jay Freedman said:
No, you can't remove the feature or permanently disable it. However,
if you're really sure you never want to see any revisions from
anybody, you can put this macro into your Normal.dot so you won't have
to fool with them:

Sub AutoOpen()
' turn off tracking
If ActiveDocument.TrackRevisions Then
ActiveDocument.TrackRevisions = False
End If

' accept all previous changes
If ActiveDocument.Revisions.Count Then
ActiveDocument.Revisions.AcceptAll
End If
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