VBA宏字注释

发布于 2024-12-29 02:36:05 字数 250 浏览 0 评论 0原文

我对 Word 的 VBA 宏不熟悉。我需要改变一个令人兴奋的宏来操作word中的注释。我需要将注释引用添加到字符串中。所谓评论引用就是方括号内的字符串,这里是SM4:

图片链接 http ://dl.dropbox.com/u/13765664/wordcomment.png

如何获取评论参考?

I'm new to VBA macros for word. I need to alter an exciting macro operating on comment in word. I need to add the comment reference to a string. What is call the comment reference is the string inside the square brackets, here SM4:

link to image http://dl.dropbox.com/u/13765664/wordcomment.png

How do i get the comment reference?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听风吹 2025-01-05 02:36:05

我对 Word 编码相当无知,但这似乎可以满足您的要求:

Dim ocom As Comment
For Each ocom In ActiveDocument.Comments
    With ocom
        MsgBox .Author & vbCrLf & .Initial
        MsgBox .Range.Text
    End With
Next

I'm fairly clueless re Word coding, but this seems to do what you want:

Dim ocom As Comment
For Each ocom In ActiveDocument.Comments
    With ocom
        MsgBox .Author & vbCrLf & .Initial
        MsgBox .Range.Text
    End With
Next
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文