Oliver,
That is a problem in Word2002 corrected in Word2003. You
will need to run a macro (just once) to set your choices:
Sub TrackChanges()
'
' TrackChanges Macro
' Macro basics provided by Shauna Kelly and edited
11/19/2002 by Gregory K.Maxey
With Application.Options
.RevisedLinesMark = wdRevisedLinesMarkOutsideBorder
.RevisedLinesColor = wdAuto
.DeletedTextMark = wdDeletedTextMarkStrikeThrough
.DeletedTextColor = wdRed
' .DeletedTextMark = wdDeletedTextMarkHidden
.InsertedTextMark = wdInsertedTextMarkItalic
.InsertedTextColor = wdBlue
' .InsertedTextMark = wdInsertedTextMarkColorOnly
' .InsertedTextColor = wdAuto
' .RevisedPropertiesMark =
wdRevisedPropertiesMarkColorOnly
' .RevisedPropertiesColor = wdAuto
.RevisedPropertiesMark =
wdRevisedPropertiesMarkColorOnly
.RevisedPropertiesColor = wdViolet
End With
End Sub
This includes about the range of options for track changes
and I use the '
to suppress the features I don't want. For more on how to
apply macros,
see:
http://www.mvps.org/word/FAQs/MacrosVBA/CreateAMacro.htm