0

我一直在我的应用程序中使用 Outlook Redemption 的 ActiveInlineResponsePopOut 方法。根据我得到的反馈,该方法似乎适用于大多数 Outlook 2016 安装。但是,在某些机器上,该方法不起作用(即 mailitem 不会弹出),我会得到以下异常:

>Exception type: System.Runtime.InteropServices.COMException
>Message: Could not find the toolbar control
>Source: redemption.SafeExplorer
>StackTrace: at Redemption.ISafeExplorer.ActiveInlineResponsePopOut()

据我所知,问题似乎始于 Outlook 2016 版本 16.0.7571。Outlook 2016 的早期版本(32 位和 64 位)似乎工作正常。

有没有其他人也看到过这种行为?有什么解决方法吗?

4

1 回答 1

0

我对从OutlookSpy执行的以下脚本没有任何问题(确保有一个内联响应处于活动状态,单击 OutlookSpy 工具栏上的“脚本编辑器”按钮,粘贴脚本,单击运行)。我使用的是 Outlook 2016 16.0.0.7766。

set sExplorer = CreateObject("Redemption.SafeExplorer")
sExplorer.Item = Application.ActiveExplorer
sExplorer.ActiveInlineResponseDiscard
于 2017-01-31T16:29:58.130 回答