如何从 JScript 调用带有参数的 Word 宏
我有一个 Word 模板,其中在 ThisDocument 部分中定义了一个宏:
Sub Go(pID As Integer, pPassword As String)
我尝试从 JScript 执行此宏,如下所示:
application.Run("Go", 1, "secret");
但这失败了 - 我做错了什么?
I have a Word template with a macro defined in the ThisDocument section:
Sub Go(pID As Integer, pPassword As String)
I am trying to execute this macro from JScript as follows:
application.Run("Go", 1, "secret");
But this fails - what am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,找到一个答案:
改用文档变量:
Ok, found one answer:
use document variables instead: