G
Guest
I found (and then lost) the thread with a wonderful macro to get the author
and initials out of comments. I used it and it was grand. (garfield-n-odie)
BUT, I do NOT want the date or time to show. When I make the adjustment the
bug was I couldn't change the read only properties. can anyone help?
garfield-n-odie?
Sub ZapCommentInitials()
Dim oCmt As Comment
For Each oCmt In ActiveDocument.Comments
oCmt.Initial = ""
oCmt.Author = ""
Next oCmt
End Sub
and initials out of comments. I used it and it was grand. (garfield-n-odie)
BUT, I do NOT want the date or time to show. When I make the adjustment the
bug was I couldn't change the read only properties. can anyone help?
garfield-n-odie?
Sub ZapCommentInitials()
Dim oCmt As Comment
For Each oCmt In ActiveDocument.Comments
oCmt.Initial = ""
oCmt.Author = ""
Next oCmt
End Sub