Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub ToolsRevisionMarksToggle()
'Overrides the Tools Track Changes command
' MsgBox "Track Changes toggle is not permitted."
End Sub
Sub ToolsRevisionMarksToggle()
If Environ("username") = "Gerry" Then
ActiveDocument.TrackRevisions = Not ActiveDocument.TrackRevisions
Else
MsgBox "Track Changes toggle not permitted."
End If
End Sub