展望2010年闭幕
如何在用户关闭Outlook时附加处理程序?
私人无效ThisAddIn_Shutdown(对象发件人,System.EventArgs e)基本不起作用。
在这里:VSTO Outlook集成 - 用于同步的Outlook关闭事件
我发现了一个连接到Explorer.Close()和Inspector.Close()的建议。
在这里:http://social.msdn.microsoft.com/forums/en-US/vsto/thread/7e3c3a98-2b01-4def-a83c-f560e4672e73
赫尔穆特附加这样一个处理程序:
_Inspector = inspector as Outlook.InspectorClass;
// register for the close event - used to release ourself from memory - intercept the close event
_Inspector.InspectorEvents_Event_Close += new Outlook.InspectorEvents_CloseEventHandler(_Inspector_InspectorEvents_Event_Close);
但我无法在我的机器上重复它(也许这是我的新观点...)
任何人可以帮忙?
您必须将文件注入到OUTLOOK.EXE进程中,并且在此dll中,您必须在WndProc中处理WM_CLOSE消息。 试试这个链接:如何处理WNDPROC。 这个链接解释你的一切,但这是关于GETMINMAXINFO消息你有WM_CLOSE:关于注入int WNDPROC
链接地址: http://www.djcxy.com/p/21479.html下一篇: VSTO: process mail using newmailex before outlook rules move mail