C
Christine
I've created a button that I want to toggle the way
tracked changes are displayed from inline to balloon or
from balloon to inline. The code below is only toggling
changes that result from updated fields. Any idea what
I'm doing wrong?
Private Sub toggle_Click()
With ActiveWindow.View
If .RevisionsMode = wdInLineRevisions Then
.RevisionsMode = wdBalloonRevisions
Else
.RevisionsMode = wdInLineRevisions
End If
End With
End Sub
Thanks in advance!
Christine
tracked changes are displayed from inline to balloon or
from balloon to inline. The code below is only toggling
changes that result from updated fields. Any idea what
I'm doing wrong?
Private Sub toggle_Click()
With ActiveWindow.View
If .RevisionsMode = wdInLineRevisions Then
.RevisionsMode = wdBalloonRevisions
Else
.RevisionsMode = wdInLineRevisions
End If
End With
End Sub
Thanks in advance!
Christine