Ian Gatehouse said:
How can a print an amended document (Office XP) so that the changes are
marked with a 'sideline' but without the 'revsion bubbles' or original text
also being printed.
In the Word 2002 options dialog you can turn off balloons, set the inserted
text mark to 'None' and set the bar, but you can't change the deleted text
appearance. To do this you have to resort to VBA:
Options.DeletedTextMark = wdDeletedTextMarkStrikeThrough
You can enter this in the Visual basic immediate window (Alt - F11,
Ctrl -G). You only need to run it once.
If you need to swap back and forth between a change bar and a full revision
marked format, you'll probably be better off with a pair of macros. This one
will give you change bars only:
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