View Single Post
  #1   Report Post  
S2art
 
Posts: n/a
Default Track Changes in Word 2002

This marco also worked for me, but it only accepted the changes I added, not
the deletions. Is there a similar macro to accept the deletions, or to
accept both simultaneously?
Thanks

"Greg" wrote:

To me the range of options for tracking changes is the
most disappointing feature of Word2002. Thankfully this
was corrected in Word2003. To regain the ability to fully
customize track changes (e.g., customize the deleted text
mark) you will need a macro. The following is an
adaptation of a macro Shauna Kelly provided me last year
when I was frustrated by this same problem. It is
currently set to provide the options you have indicated.
To customize further, you will need to open the VBA
project and change the macro.

Sub TrackChanges()

With Application.Options
.RevisedLinesMark = wdRevisedLinesMarkOutsideBorder
.RevisedLinesColor = wdAuto
.DeletedTextMark = wdDeletedTextMarkHidden
.DeletedTextColor = wdAuto
.InsertedTextMark = wdInsertedTextMarkNone
.InsertedTextColor = wdAuto
.RevisedPropertiesMark = wdRevisedPropertiesMarkNone
.RevisedPropertiesColor = wdAuto

End With
End Sub

Need help installing macros? See:
http://www.gmayor.com/installing_macro.htm

-----Original Message-----
I am using Word 2002. I want to accept all changes in my

document but want to keep side bars. How can I do this in
Word 2002?
--
Thanks in advance.

Bharat
.