[python-win32] Interaction between wxPython and win32ui on Win 7

2011-05-07 Thread Dietmar Schwertberger
Hi! I'm observing some strange interaction between wxPython and win32ui on Windows 7 PCs. I've been using DDE code from Pythonwin which in turn uses win32ui. When I use win32ui and SetToolTipString from wxPython in the same program, the Python interpreter will not exit any more (until it's

Re: [python-win32] Interaction between wxPython and win32ui on Win 7

2011-05-07 Thread Michel Claveau
Hi! I have the same problem, in several cases without wx (OCX+pywin32 ; ATL+ctypes ; etc.) For terminate these rebel scripts, I use this code: import os pid=os.getpid() os.system(TASKKILL /F /PID +str(pid)) @-salutations -- Michel Claveau