G
George F. Rice
I maintain several thousand documents, which track
critical history using "markup view" (as in View ->
Markup). Editors sometimes leave "markup view" on,
sometimes off, when they save a document.
A script performs several "replace" operations across all
documents. However, if "markup view" is on, "replace"
changes the deleted text, destroying history!
I need either a replace option to not change deleted text,
OR a way to turn off "markup view" iff it is on (or,
alternately, a mechanism to determine IF "markup view" is
on).
I tried the statements below, but both act as toggles.
They return nothing indicating the state of "markup view",
as far as I can tell (I threw away my Word 6.0
documentation, silly me).
WordBasic.ViewChanges
WordBasic.ShowInsertionsAndDeletions
I also tried this, but in some cases it only hid the color
of the deleted text, but left the deleted text itself
visible and black (and thus changed by "replace").
For i = 1 To ActiveWindow.View.Reviewers.Count
ActiveWindow.View.Reviewers(Index:=i).Visible = False
Next
I've Googled and called all of the "power users" I know -
none have seen this problem.
Any help greatly appreciated!
George
critical history using "markup view" (as in View ->
Markup). Editors sometimes leave "markup view" on,
sometimes off, when they save a document.
A script performs several "replace" operations across all
documents. However, if "markup view" is on, "replace"
changes the deleted text, destroying history!
I need either a replace option to not change deleted text,
OR a way to turn off "markup view" iff it is on (or,
alternately, a mechanism to determine IF "markup view" is
on).
I tried the statements below, but both act as toggles.
They return nothing indicating the state of "markup view",
as far as I can tell (I threw away my Word 6.0
documentation, silly me).
WordBasic.ViewChanges
WordBasic.ShowInsertionsAndDeletions
I also tried this, but in some cases it only hid the color
of the deleted text, but left the deleted text itself
visible and black (and thus changed by "replace").
For i = 1 To ActiveWindow.View.Reviewers.Count
ActiveWindow.View.Reviewers(Index:=i).Visible = False
Next
I've Googled and called all of the "power users" I know -
none have seen this problem.
Any help greatly appreciated!
George