Re: [python-win32] com events while running wx main loop

2007-04-18 Thread Christian K.
Thomas Heller wrote: > Christian K. schrieb: >> sorry. I forgot the attachment. >> >> Christian >> >> >> >> >> >> import unittest >> import comtypes.client >> >> import wx >> >> class EventHandler(object): >> """Instances

Re: [python-win32] How to use IExtractImage in python

2007-04-18 Thread Mark Hammond
I'm afraid that IExtractImage is not yet exposed by pywin32 - it would not be too hard if you are interested in testing a new implementation. Note that IExtractIcon is exposed - that may nor may-not work for you though. Cheers, Mark -Original Message- From: [EMAIL PROTECTED] [mailto:

Re: [python-win32] com events while running wx main loop

2007-04-18 Thread Thomas Heller
Christian K. schrieb: > sorry. I forgot the attachment. > > Christian > > > > > > import unittest > import comtypes.client > > import wx > > class EventHandler(object): > """Instances are called when the COM object

[python-win32] How to use IExtractImage in python

2007-04-18 Thread Steven James
I am attempting to add a simple thumbnail preview in a wxpython app I'm putting together. IExtractImage seems to be the way to access the thumbnails that Windows Explorer uses. (I can't use PIL or similar because I'm previewing AutoCAD .dwg files). I am adapting some Delphi COM code (from here