Mark Hammond gmail.com> writes:
>
> I'm not familiar enough with ctypes to know if that makes sense, but I
> doubt it - nothing would seem to know the size of the buffer pointed at
> by 'x'. You probably need to stick with using a python string object -
> ensure the string contains exactly t
On 13/12/2012 11:36 AM, Dave Calkins wrote:
I'd like to be able to call an OLE Automation (IDispatch) server from
python to automate an existing application. I'm not at liberty to
change the existing automation interface provided by the application so
I need to get it to work with what the app c
I've lost some of the context here, but there is a
pythoncom.ObjectFromAddress that looks like it does exactly what you
want - check out the pywin32 docs for details...
HTH,
Mark
On 14/12/2012 11:04 AM, Gilles Baggieri wrote:
Mark Hammond gmail.com> writes:
I'm not familiar enough with c