前段时间我实现了 Outlook 事件监听器。我使用导入的 Outlook_tlb 库来处理 Outlook。您可以通过IConnectionPoint
界面接收 Outlook 通知。您的事件侦听器类必须实现IDispatch
接口(至少Invoke
方法)。因此,有示例代码:将 TOutlookEventListener 声明为:
TOutlookEventListener = class(TInterfacedObject, IDispatch)
strict private
FConnectionPoint : IConnectionPoint;
FCookie : integer;
function GetTypeInfoCount(out Count: Integer): HResult; stdcall;
function GetTypeInfo(Index, LocaleID: Integer; out TypeInfo): HResult; stdcall;
function GetIDsOfNames(const IID: TGUID; Names: Pointer;
NameCount, LocaleID: Integer; DispIDs: Pointer): HResult; stdcall;
function Invoke(DispID: Integer; const IID: TGUID; LocaleID: Integer;
Flags: Word; var Params; VarResult, ExcepInfo, ArgErr: Pointer): HResult; stdcall;
public
constructor Create();
end;
在构造函数代码中,您必须获取 OutlookApplication 的实例,找到连接点并将自身注册为事件侦听器:
constructor TOutlookEventListener.Create();
var cpc : IConnectionPointContainer;
ol : IDispatch;
begin
inherited Create();
ol := GetActiveOleObject('Outlook.Application');
cpc := ol as IConnectionPointContainer;
cpc.FindConnectionPoint(DIID_ApplicationEvents, FConnectionPoint);
FConnectionPoint.Advise(self, FCookie);
end;
使用Invoke
方法可以过滤事件。Quit
事件有 DispID = 61477
function TOutlookEventListener.Invoke(DispID: Integer; const IID: TGUID; LocaleID: Integer; Flags: Word; var Params; VarResult, ExcepInfo,
ArgErr: Pointer): HResult;
begin
result := S_OK;
case DispId of
61442 : ; // ItemSend(const Item: IDispatch; var Cancel: WordBool);
61443 : ; // newMailEventAction();
61444 : ; // Reminder(const Item: IDispatch);
61445 : ; // OptionsPagesAdd(const Pages: PropertyPages);
61446 : ; // Startup;
61447 : begin
FConnectionPoint.Unadvise(FCookie);
FConnectionPoint := nil;
form1.OutlookClosed(self);
end
else
result := E_INVALIDARG;
end;
end;
其他方法必须返回 E_NOTIMPL 结果。
在表单 OnCreate 事件处理程序中创建 TOutlookEventListener 的实例(假设 Outlook 已经在运行)。我还使用 TForm1.OutlookClosed(sender : TObject) 事件来显示通知消息。
阅读有关 Outlook 事件的文章:http: //www.codeproject.com/Articles/4230/Implementing-Outlook-2002-XP-Event-Sinks-in-MFC-C