WD2000: Compile Error If VBA Code Doesn't Find Comments (212722)
The information in this article applies to:
This article was previously published under Q212722 SYMPTOMS
When you run a macro to retrieve a property of the Comment object and no comments exist in the document, one of the following error messages appears:
Compile Error:
Method or data member not found.
-or-
Run-Time Error '5941':
The requested member of the collection does not exist.
CAUSE
Your document does not contain comments.
WORKAROUNDMicrosoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
To avoid this error message, you can test for the presence of comments in
your document using the following sample Microsoft Visual Basic for
Applications macro:
Sub CommentExist()
If ActiveDocument.Comments.Count > 0 Then
MsgBox "Word found Comments in your document."
Else
MsgBox "Word found no Comments in your document."
End If
End Sub
REFERENCES
For more information about getting help with Visual Basic for Applications,
please see the following article in the Microsoft Knowledge Base:
226118 OFF2000: Programming Resources for Visual Basic for Applications
Modification Type: | Major | Last Reviewed: | 6/17/2005 |
---|
Keywords: | kberrmsg kbprb KB212722 |
---|
|