Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Page Layout / February 2004

Tip: Looking for answers? Try searching our database.

Change Bars

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
steve klatzkin - 06 Nov 2003 14:07 GMT
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 - 06 Nov 2003 16:04 GMT
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

Signature

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

> In our effort to exercise the various features used by
> the technical staff and DM for publishing, we discovered
[quoted text clipped - 10 lines]
> deletions is to accept all changes, thus losing the
> ability to mark the changes with a change bar.
omar0117 - 05 Feb 2004 03:15 GMT
I tried applying the macro and it makes the document look as expected o
the screen.  However, I am unable to print the document following th
application of the macro - word hangs.

Any suggestions
Greg Maxey - 06 Nov 2003 16:55 GMT
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

>-----Original Message-----
> In our effort to exercise the various features used by
[quoted text clipped - 12 lines]
>ability to mark the changes with a change bar.
>.
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.