P
PegDalyPA via OfficeKB.com
Hi, Everyone:
I'm trying to find a way to turn off View, Markup that I can add to the code
that's executed with my templates. I found the following in another
message/thread, but I don't think this will work for me.
.........
ActiveDocument.TrackRevisions returns a Boolean True if Track Revisions is
turned on.
You can turn it on using:
ActiveDocument.TrackRevisions = True
or off with:
ActiveDocument.TrackRevisions = False
-------
I don't want to make it stop "tracking" changes since the users may need it.
I just don't want it EVER to DEFAULT to viewing them (which it has been -
OFTEN - it's driving me crazy). When I tried recording a macro while turning
off Markup View, all I got was the following line:
WordBasic.ViewChanges
...which seems to be telling it to turn Markup View ON instead of OFF (which
tells me that it's probably just a toggle switch. Is there a way to check to
see if it's already in Markup View before doing the toggle (using an if
statement), like this?
If (some code to check for Markup View, NOT document tracking) = True then
WordBasic.ViewChanges
End if
Does anyone have any suggestions?
Thanks in advance,
Peg
I'm trying to find a way to turn off View, Markup that I can add to the code
that's executed with my templates. I found the following in another
message/thread, but I don't think this will work for me.
.........
ActiveDocument.TrackRevisions returns a Boolean True if Track Revisions is
turned on.
You can turn it on using:
ActiveDocument.TrackRevisions = True
or off with:
ActiveDocument.TrackRevisions = False
-------
I don't want to make it stop "tracking" changes since the users may need it.
I just don't want it EVER to DEFAULT to viewing them (which it has been -
OFTEN - it's driving me crazy). When I tried recording a macro while turning
off Markup View, all I got was the following line:
WordBasic.ViewChanges
...which seems to be telling it to turn Markup View ON instead of OFF (which
tells me that it's probably just a toggle switch. Is there a way to check to
see if it's already in Markup View before doing the toggle (using an if
statement), like this?
If (some code to check for Markup View, NOT document tracking) = True then
WordBasic.ViewChanges
End if
Does anyone have any suggestions?
Thanks in advance,
Peg