-----Original Message-----
Hi Ken
Yes, but ...
The first thing you need to understand is that the revisions (tracked
changes) need to be left in the document - the change bars are simply one
way of showing revisions (a 'view' question) where the 'inserted' text is in
normal font, and the 'deleted' text hidden, plus the change bar in the
chosen position.
The second important point is that if you are planning to send a document in
Word format to other people, the way they view the revisions is up to them -
so if you want them to see change bars (and perhaps not see the exact detail
of the change) you will need to send in PDF or hard copy.
Finally, in Word 2002 there is no provision in the user interface to set
deletions to display hidden. This was a nasty mistake which has been
rectified in 2003. If you are using Word 2002 you need to change the deleted
text mark using the following:
Options.DeletedTextMark = wdDeletedTextMarkStrikeThrough
You can enter this in the Visual basic immediate window (Alt - F11,
Ctrl -G). You only need to run it once to change your view options.
Or you can use the following macro to do everything at once:
Sub ShowChangebarsOnly()
With Options
' no text marking when printed
.InsertedTextMark = wdInsertedTextMarkNone
.InsertedTextColor = wdAuto
.DeletedTextMark = wdDeletedTextMarkHidden
.DeletedTextColor = wdByAuthor
.RevisedPropertiesMark = wdRevisedPropertiesMarkNone
.RevisedPropertiesColor = wdAuto
' print change bars
.RevisedLinesMark = wdRevisedLinesMarkRightBorder
.RevisedLinesColor = wdAuto
End With
' revisions visible and printing, no balloons
With ActiveWindow.View
.RevisionsMode = wdInLineRevisions
.ShowRevisionsAndComments = True
.ShowFormatChanges = False
.RevisionsView = wdRevisionsViewFinal
End With
End Sub
--
Margaret Aldis - Microsoft Word MVP
Syntagma partnership site:
http://www.syntagma.co.uk
Word MVP FAQ site:
http://www.mvps.org/word
.