Revisions in Word 2003 vs. 2000

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top