Detect logoff/shutdown

J

j

Hi,

I'm developing shared AddIn for Outlook 2003, C# 2.0.

i catch the system's logoff/shutdown occurence.
i tried to use diferent events from but
Microsoft.Win32.

SystemEvents. ....
they are not fired.


any suggesiotn.
 
K

Ken Slovak - [MVP - Outlook]

In an addin for Outlook 2003 you should be handling OnDisconnection() anyway
from the Extensibility interface. In addition, for 2003 and earlier you need
to handle Explorer.Close() and Inspector.Close() and if in either of those 2
event handlers there are no more Explorers and no Inspectors then you
release all of your Outlook objects so that OnDisconnection() can fire. You
also should have a OnBeginShutdown() handler of course for the Extensibility
interface.

I handle both of those Extensibility interface events plus the 2 Close()
events and from there call my teardown code.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top