When I was in use the dsoframer operation word had a problem.
i can add a comment by code like this
Microsoft.Office.Interop.Word.Comment cm =
word.Comments.Add(word.Application.Selection.Range, "test");
int ctIndex = cm.Index;
but how to update the comment content? I can't find any function to do this!
word.Comments[ctIndex]..