Hello,
I am attempting to create an Outlook COM AddIn that works with Outlook 2000
and later. It appears that I must cast certain events in order to do so. I
found code similar to my example below:
((Outlook.ExplorerEvents)this.ActiveExplorer).Close+=new
Outlook.ExplorerEvents_CloseEventHandler
(ActiveExplorer_ExplorerEvents_Event_Close);
The above throws an error saying:
'Outlook.ExplorerEvents.Close()' denotes a 'method' which is not
valid in the given context
Can anyone advise?
Thanks & Regards,
TC
TC - 27 Apr 2005 12:54 GMT
The previous documentation that I saw was erroneous. It has been resolved.
> Hello,
>
[quoted text clipped - 16 lines]
>
> TC