如何使用 VBScript 打开 Adobe Reader?
我想以编程方式填写 PDF 格式表单中的某些字段。
我尝试了这段代码:
Set objAdobe = CreateObject("AcrobatReader.Application")
objAdobe.Visible = True
我收到“ActiceX 组件无法创建对象”错误。
I want to programmatically fill in some fields in a form in PDF format.
I tried this code:
Set objAdobe = CreateObject("AcrobatReader.Application")
objAdobe.Visible = True
I get the "ActiceX component can't create object" error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
OLE 自动化界面仅由 Adobe Acrobat 提供,而非Adobe 阅读器。
如果您安装了 Adobe Acrobat,则可以像这样从 VBScript 启动它:
有关 Acrobat 自动化 API 的完整参考,请参阅 本文档。
The OLE automation interface is only provided by Adobe Acrobat, not Adobe Reader.
If you have Adobe Acrobat installed, you can launch it from VBScript like this:
For a complete reference of Acrobat's automation API, see the "OLE Automation" section of this document.
尝试使用 Windows API ShellExecute 函数。
不确定 VB 语法(这在 FoxPro 中有效)...
...但用户必须手动填写字段。
Try the windows API ShellExecute function.
Not sure of the VB syntax (this works in FoxPro)...
...but the user will have to fill in the fields by hand.