Microsoft Outlook 互操作抛出 COMException (0x84130003)

发布于 2024-08-25 19:55:37 字数 315 浏览 5 评论 0原文

我似乎无法在 Google 或 MSDN 上找到此异常代码所指示的内容,并且它是间歇性发生的,并且没有我可以辨别的模式。以前有人遇到过这个吗?失败似乎发生在此处的最后一行:

Dim olApp As New Outlook.Application
Dim olNS As Outlook.NameSpace = olApp.GetNamespace("MAPI")
Dim olMail As Outlook.MailItem = olApp.CreateItem(Outlook.OlItemType.olMailItem)

任何帮助将不胜感激。

I can't seem to find a thing on what this exception code indicates on Google or MSDN, and it's occurring intermittently and without a pattern I can discern. Has anyone run across this before? The failure seems to occur on the final line here:

Dim olApp As New Outlook.Application
Dim olNS As Outlook.NameSpace = olApp.GetNamespace("MAPI")
Dim olMail As Outlook.MailItem = olApp.CreateItem(Outlook.OlItemType.olMailItem)

Any help would be appreciated.

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

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

发布评论

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

评论(1

拍不死你 2024-09-01 19:55:37

看起来您还没有创建 olApp 对象。

Set olApp = CreateObject("Outlook.Application")

此链接应该可以帮助您:
http://support.microsoft.com/kb/220595

Looks like you haven't created your olApp object.

Set olApp = CreateObject("Outlook.Application")

This link should help you out:
http://support.microsoft.com/kb/220595

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文