PDA

View Full Version : Solved: Highlight Changes



mark_h82
05-14-2007, 03:24 AM
Hi, when tracking changes is enabled on a document, I want to make sure that all 3 of the highlight changes options are also ticked.

I have the code ActiveDocument.TrackRevisions=True to find if the track changes has been enabled, but how do I make sure that the MarkRevisions, PrintRevisions and ViewRevisions are True? ( I think these are the correct 3).

I have tried ActiveDocument.MarkRevisions = True etc, but this did not seem to work.

shasur
05-14-2007, 07:04 AM
Sub Show_All_Rev()
ActiveDocument.ShowRevisions = True
ActiveDocument.TrackRevisions = True
ActiveDocument.PrintRevisions = True

End Sub