Tracking changes

G

Guest

In Word 2002. I want to track my changes to a document by putting bars in the columns only.
The edited content always remains behind with a strike out through it.
I had always been able to do it in word 2000.

How do I stop the old content from being displayed with a strike through?

Thanks.
 
G

Greg Maxey

Mike,

You will have to run a macro. The following provides a means of controlling
most of the options. Here it is set up to show the margin marks only.:

Sub TrackChanges()

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

Remove the ' next to lines you want to activate. Put a ' next to the lines
you want to deactivate. You can change color choices as well.

You only need to run the macro once.
 
G

Guest

I have created a Macro.
I can change EVERYTHING using the macro except having all changes DELETED.
I can change it to any other combo, even if I use the following line, deleted lines will still show up as underlined.

.DeletedTextMark = wdDeletedTextMarkHidden

Any ideas?
Thanks.
 
M

Margaret Aldis

Do you have SRs applied? IIRC, when Word 2002 was first released, not only
was the control over deleted text mark gone from the dialog, but you
couldn't use wdDeletedTextMarkHidden either! (Someone at MS was obviously
very certain they knew better than generations of 'change bar only' writers
and publishers <sigh>).

After SR1, the setting definitely does work.

--
Margaret Aldis - Microsoft Word MVP
Syntagma partnership site: http://www.syntagma.co.uk
Word MVP FAQ site: http://www.mvps.org/word


Mike said:
I have created a Macro.
I can change EVERYTHING using the macro except having all changes DELETED.
I can change it to any other combo, even if I use the following line,
deleted lines will still show up as underlined.
 

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