S
Steve C
I recently wrote some code in Word 2003 where part of the procedure will not
show revisions made and show the Final view. The code works perfectly for
Word 2003 users, but errors out for 2000 users when they run it. The error
focuses on the .ShowRevisionsAndComments = False line, which, I suppose,
makes sense as 2000 users don't have that exact same feature. What can I do
to correct my code so that it will run properly for all users? Thanks!
'Show the Final view without revisions/comments
With ActiveWindow.View
.ShowRevisionsAndComments = False
.RevisionsView = wdRevisionsViewFinal
End With
show revisions made and show the Final view. The code works perfectly for
Word 2003 users, but errors out for 2000 users when they run it. The error
focuses on the .ShowRevisionsAndComments = False line, which, I suppose,
makes sense as 2000 users don't have that exact same feature. What can I do
to correct my code so that it will run properly for all users? Thanks!
'Show the Final view without revisions/comments
With ActiveWindow.View
.ShowRevisionsAndComments = False
.RevisionsView = wdRevisionsViewFinal
End With