Hi Jay,
Thanks for the quick response. Here's the rub...I have been trying that, but
it's not working. Basically I want it to go into "Final Showing Markup" on
print of the document, but it appears that it isn't taking effect until after
the print command is issued. Here's the code I'm using
Private Sub appWord_DocumentBeforePrint(ByVal doc As Document, Cancel As
Boolean)
With ActiveWindow.View
.RevisionsView = wdRevisionsViewFinal
.ShowRevisionsAndComments = True
End With
End Sub
I've tried using other function calls in that DocumentBeforePrint function,
but it seems like they get stalled once the print dialog box shows up. After
the dialog box is cleared (either by printing or canceling the print) it
finishes up. Any idea what's going on?
Thanks again for you help!
Megan