我正在尝试自动化 Word 2010 以在 VBScript 中创建邮件标签。到目前为止,我有以下内容:
Set word = CreateObject("Word.Application")
word.Visible = True
word.Documents.Add
word.MailingLabel.CreateNewDocument "5162"
我收到错误“命令失败”(800A1066)。输出 word.MailingLabel 给出错误,“对象不支持此属性或方法。” MSDN 的 MailingLabel 文档表明这是正确的用法。我究竟做错了什么?