如果没有安装 AddIns,则无法访问 Excel 的 Application.ComAddIns 属性
为 Windows 脚本宿主截取的代码显示当前安装到 Excel 中的 COM-AddIn 的数量。
除非没有安装 COM-AddIns,否则它工作正常。 我相信它应该输出“0”,但它却引发了异常(代码 800A03EC)。 有谁知道为什么?
test.vbs
Set objExcel = CreateObject("Excel.Application")
WScript.Echo objExcel.ComAddIns.Count
This code snipped for the Windows Scripting Host displays the number of COM-AddIns currently installed into Excel.
It works fine except for when there are no COM-AddIns installed. I believe it should output a "0", but instead it raises an exception (code 800A03EC). Does anyone know why?
test.vbs
Set objExcel = CreateObject("Excel.Application")
WScript.Echo objExcel.ComAddIns.Count
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来像是 Excel 中的错误。 您可能不得不滥用 VB 的错误处理来解决这个问题。
Looks like a bug in Excel. You'll probably have to abuse VB's error handling to work around it.