Hey everyone.
I've been writing an Outlook add-in that uses a usercontrol and outlook propertypages to add a tab to the outlook Tools -> Options menu. I'm having a problem.
Whenever I close outlook, I look in the task manager and Outlook.exe is still running. I've looked through my add-in code and I've destroyed all objects holding an instance of outlook or any of it's objects (Namespaces, Explorers, Application Objects, etc have all been killed)
i.e.
This happens when choosing "Exit" AND "Exit and Log Off".
Anyone have any ideas as to why this would be happening?
Thanks in advance...
--NipsMG s-)
I've been writing an Outlook add-in that uses a usercontrol and outlook propertypages to add a tab to the outlook Tools -> Options menu. I'm having a problem.
Whenever I close outlook, I look in the task manager and Outlook.exe is still running. I've looked through my add-in code and I've destroyed all objects holding an instance of outlook or any of it's objects (Namespaces, Explorers, Application Objects, etc have all been killed)
i.e.
Code:
set oNS = Nothing
set oExplorer = Nothing
set oOutlook = Nothing
This happens when choosing "Exit" AND "Exit and Log Off".
Anyone have any ideas as to why this would be happening?
Thanks in advance...
--NipsMG s-)