[python-win32] Outlook Addin Help

Bill Burns billburns at pennswoods.net
Fri May 12 16:33:09 CEST 2006


>>Object with win32trace dispatcher created (object=None)
>>Gateway Count:  2
>>Interface Count:  4
>>
>>Is there something I should try to get the Interface Count down to zero?
> 
> 
> In Spambayes, I previously tried everything I could think of to locate them.
> I guess additional analysis is necessary to determine exactly what objects
> they are before we can determine how to kill them.


I was able to kill some of the objects by adding this code to the
ButtonEvent,

def Close(self):
         self.application = None
         self.activeExplorer = None
         self.close()

now I get the following output:

Object with win32trace dispatcher created (object=None)
Gateway Count:  1
Interface Count:  1

I'll keep "tooling" around with it....

Bill





More information about the Python-win32 mailing list