Thanks

On 1/26/07, Tim Roberts <[EMAIL PROTECTED]> wrote:

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, [EMAIL PROTECTED]
Providenza & Boekelheide, Inc.

_______________________________________________
Python-win32 mailing list
Python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32




--
http://www.goldwatches.com
http://www.wazoozle.com
_______________________________________________
Python-win32 mailing list
Python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to