[python-win32] VBA IDE Intellisense to work with python COM server?

Tim Roberts timr at probo.com
Fri Jan 26 19:15:34 CET 2007


wccppp wrote:
>
> I created a simple COM server following the sample DynamicPolicy.py in
> Mark's book.  When testing it with VBA, I noticed intellisense/calltip
> does not work.  Is this how it is supposed to be?  Any way to get it
> to work?

Python COM servers all have to use "late binding", meaning that the
properties and methods cannot be known until the object is actually up
and running.  VBA doesn't instantiate the object until you run the
script.  Thus, intellisense can't work.

-- 
Tim Roberts, timr at probo.com
Providenza & Boekelheide, Inc.



More information about the Python-win32 mailing list