Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Change Bars

1 view
Skip to first unread message

steve klatzkin

unread,
Nov 6, 2003, 9:07:50 AM11/6/03
to
In our effort to exercise the various features used by
the technical staff and DM for publishing, we discovered
that the track changes feature has been altered
significantly.

Previously, any documents that were in Word were revised
using the track changes feature to identify changes from
the previous release. DM selected change bars only for
publishing so that additions were not highlighted
anddeletions were not displayed in the published item.
Word 2002 does not allow us to suppress the view of
deletions. The only mechanism available to remove
deletions is to accept all changes, thus losing the
ability to mark the changes with a change bar.

Jay Freedman

unread,
Nov 6, 2003, 11:04:34 AM11/6/03
to
Hi, Steve,

In Word 2002, the field for deletion formatting was removed from the Track
Changes option page -- we don't know why, but it was obviously a mistake. It
returned in Word 2003.

Fortunately, the formatting can still be set from a macro. Put this macro
into the template(s) attached to the documents, and add a toolbar button
pointing to the macro. It will toggle between [strikethrough deletions, blue
insertions] and [hidden deletions, auto insertions], without affecting the
change bars.

Sub ToggleTrackChangesDisplay()
With Options
If .DeletedTextMark = wdDeletedTextMarkHidden Then
.DeletedTextMark = wdDeletedTextMarkStrikeThrough
.InsertedTextMark = wdInsertedTextMarkColorOnly
.InsertedTextColor = wdBlue
Else
.DeletedTextMark = wdDeletedTextMarkHidden
.InsertedTextMark = wdInsertedTextMarkNone
.InsertedTextColor = wdAuto
End If
End With
End Sub

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://www.mvps.org/word

Greg Maxey

unread,
Nov 6, 2003, 11:55:42 AM11/6/03
to
Steven

If all you want is the change mark in the margin you can
run the following macro and print showing markup:

Sub TrackChanges()


With Application.Options
.RevisedLinesMark = wdRevisedLinesMarkOutsideBorder
.RevisedLinesColor = wdAuto
' .DeletedTextMark = wdDeletedTextMarkCaret
' .DeletedTextMark = wdDeletedTextMarkStrikeThrough
.DeletedTextMark = wdDeletedTextMarkNone
' .DeletedTextColor = wdRed
' .DeletedTextMark = wdDeletedTextMarkHidden
' .InsertedTextMark = wdInsertedTextMarkItalic
' .InsertedTextMark = wdInsertedTextMarkNone
' .InsertedTextColor = wdBlue
' .InsertedTextMark = wdInsertedTextMarkUnderline
.InsertedTextMark = wdInsertedTextMarkColorOnly
.InsertedTextColor = wdAuto
' .RevisedPropertiesMark =
wdRevisedPropertiesMarkColorOnly
' .RevisedPropertiesColor = wdAuto
' .RevisedPropertiesMark =
wdRevisedPropertiesMarkColorOnly
' .RevisedPropertiesColor = wdViolet

End With
End Sub

>.
>

omar0117

unread,
Feb 4, 2004, 10:15:00 PM2/4/04
to

I tried applying the macro and it makes the document look as expected on
the screen. However, I am unable to print the document following the
application of the macro - word hangs.

Any suggestions?


------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~View and post usenet messages directly from http://www.ExcelForum.com/

0 new messages