Tagged Questions
The comtypes tag has no wiki summary.
5
votes
3answers
2k views
Problem Inserting data into MS Access database using ADO via Python
[Edit 2: More information and debugging in answer below...]
I'm writing a python script to export MS Access databases into a series of text files to allow for more meaningful version control (I know ...
3
votes
2answers
1k views
Problem using Python comtypes library to add a querytable to Excel
I'm trying to create a QueryTable in an excel spreadsheet using the Python comtypes library, but getting a rather uninformative error...
In vba (in a module within the workbook), the following code ...
2
votes
0answers
310 views
Python, ArcObjects, and .AppRef: how to get from IAppROT to IMxDocument?
I am writing an external Python/comtypes script (in PythonWin) that needs to get a reference to the current ArcGIS 10.0 ArcMap session (through the ArcObjects COM). Because the script is outside the ...
1
vote
2answers
281 views
What does #if !USING_NET11 using System.Runtime.InteropServices.ComTypes; #endif mean?
what does the following code mean and what does it do ? Is it really required ?
#if !USING_NET11
using System.Runtime.InteropServices.ComTypes;
#endif
In my project file I have implemented the ...
0
votes
0answers
21 views
How can I solve this Python comtypes DLL error?
I have two DLLs. One is a much smaller library than the other. I need to access both these two from Python.
I found this code snippet here detailing how I can create the object from the dll.
import ...
0
votes
2answers
68 views
py2exe strangley hanging with wxPython program using IEHtmlWindow
I have a Python 2.7.2 program with wxPython 2.8.12 and comtypes 0.6.2 dependencies on a win XP SP3 machine. I am using py2exe to produce windows distributables with the following setup:
setup(
...
0
votes
0answers
67 views
Directshow (via comtypes) GetStreamCaps() function crashes Python
I have a Windows application that uses Directshow to display (and take screenshots from) a composite video stream using a Hauppauge HVR-1300 Video Capture Card.
The filter graph initializes correctly ...
0
votes
1answer
26 views
COM communication very slow (comtypes and MSAA problem!)
I am trying to write a tool to automatically install a binary. Basically, I use comtypes and MSAA interface to interact with the installation windows and drive the installation procedure. When a ...
0
votes
0answers
222 views
Python comtypes with multiple threads
I am new to the comtypes module in Python and I am having trouble finding an example reading data from a separate thread.
When I call "comtypes.client.PumpEvents(10)" from the main thread, I see the ...
0
votes
1answer
385 views
Python, comtypes and ArcObjects: Error creating AppROT object
I am experimenting with comtypes and ArcObjects under Python 2.6.5 and ArcGIS 10 SP1. I'm using the pure Python method to wrap the ArcObjects OLBs described in this answer, but getting an error in the ...
0
votes
1answer
680 views
Problems with Python 2.7 + wxPython 2.8.11? Should I switch back to Python 2.6.5 + wx.Python 2.8.10.1?
I'm currently using Python 2.7 + wxPython 2.8.11 on my windows machine. While trying to build a small project (which also uses comtypes and lets say any activex such as flashwindow) I'm getting the ...
0
votes
2answers
652 views
Can Python 2.5 and 2.7 coexist along with wxPython, py2exe and comtypes (try to resolve MSVCP90.dll problem)?
I was writing a code which uses wxPython and comtypes. I have python 2.7 installed on my machine (Windows) along with wxPython, comtypes and py2exe. while trying to build it I got the following error:
...
0
votes
2answers
279 views
Can't import comtypes.gen
I have comtypes 0.6.2 installed on Python 2.6. If I try this:
import comtypes.gen
I get:
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
import ...
0
votes
2answers
308 views
Why can't I create a COM object in a new thread in Python?
I'm trying to create a COM Object from a dll in a new thread in Python - so I can run a message pump in that thread:
from comtypes.client import CreateObject
import threading
class ...