Re: [python-win32] speed up win32com.client

2012-05-12 Thread DANIEL POSE
I had tried to change attribute name in several ways (InsertionPoint, insertionPoint, insertionpoint,...) but I obtained the same error: Traceback (most recent call last): File ipython console, line 1, in module File C:\Python27\lib\site-packages\spyderlib\widgets\externalshell\startup.py,

Re: [python-win32] speed up win32com.client

2012-05-12 Thread Dan Glassman
VBA is faster because it's running in-process inside AutoCAD (everything is loaded into acad.exe). Python runs out-of-process (AutoCAD objects need to be passed back and forth between acad.exe and python.exe). You can use AutoCAD's ObjectARX API to embed python inside AutoCAD and make python

[python-win32] calling a dll after python 2.3 pywin32-208

2012-05-12 Thread EdShallow
Hi Folks, I have an ActiveX COM dll generated by VisualBasic 6 in WinXP. I can call it and use it successfully with Python 2.3 and pywin32-208 without problems. As soon as I upgrade either pywin32- or Python to anything itself to anything newer, my dll throws an exception immediately

Re: [python-win32] speed up win32com.client

2012-05-12 Thread Mark Hammond
On 13/05/2012 5:00 AM, DANIEL POSE wrote: I had tried to change attribute name in several ways (InsertionPoint, insertionPoint, insertionpoint,...) but I obtained the same error: Traceback (most recent call last): File ipython console, line 1, in module File