Chris Farrow

Results 15 issues of Chris Farrow

From the discussion in #121.

Both ./test/TestComServer.py and ./TestDispServer.py scripts are broken in 0.6.0 (tested on Windows XP, both .zip and .exe distribution). I was able to debug for the actual cause, the reason is...

bug
tests

when I try to run this code: ``` python from comtypes.client import GetActiveObject,CreateObject td = GetActiveObject('TD_Appl.Application') ``` I got the following error: ``` python Traceback (most recent call last): File...

bug
3rd-party issue

Problem outlined here: http://groups.google.com/group/peachfuzz/browse_thread/thread/b02ea0d0e19ae3a. If you comment out the if paramflags lines it seems to be resolved. Looks like a problem with the _cominterface_meta's _fix_inout_args. When calling something that takes...

bug
help wanted

The test leaks tests fail under 64-bit python.

bug
64-bit
tests
help wanted

I am accessing SolidWorks via COM using comtypes. I create a new application object as follows: swApp=comtypes.client.CreateObject('sldworks.application') To open files with this application, you use the OpenDoc6 method, which is...

bug
3rd-party issue

I try Autodesk MAYA 2008 windows operate from IE 7.0 use comtypes "CreateObject". ex. Click "openImageFile" 1. IE (Maya.CommandEngine.MEL) 2. MAYA (melCommand "python") 3. comtypes ( CreateObject("Photoshop.Application") ) open imageFile...

bug
3rd-party issue
help wanted

The COM servers are not working in with Python 2.6.1 and Windows XP. I'm suspecting this is related to python issue 4566 (http://bugs.python.org/issue4566). I'm trying to run the ./test/TestComServer.py script...

bug
tests
help wanted

The `VARIANT._get_value` method does not unpack arrays of arbitrary type. As seen [here](https://github.com/enthought/comtypes/blob/f269c84159372799cd0f8d7b0ee23f547b0b21ec/comtypes/automation.py#L455), it is assumed that the unpacked type is in the limited `_vartype_to_ctype` dictionary. This is likely the...

bug

Default properties add syntactic sugar to interfaces, as described [here](http://msdn.microsoft.com/en-us/library/az06zx4y%28v=vs.90%29.aspx). `Item` is usually a default property. Comtypes always treats `Item` as a default property, as defined [here](https://github.com/enthought/comtypes/blob/b8179ee7e6036bc00d8493d5be5d09a0ca292c9b/comtypes/__init__.py#L369), but perhaps should...

enhancement
question