Re: IDEs for COM scripting: C# v. Python v. Iron Python v. JPython

2007-07-06 Thread John J. Lee
"Méta-MCI" <[EMAIL PROTECTED]> writes: [...] > And, all COM-servers builds with Python are dynamic-COM-server. Not true. Look for "comtypes" on this page: http://python.net/crew/theller/ctypes/ [...] > about Iron Python: is there a good IDE for it that has a typing assist? MS calls this "typin

Re: IDEs for COM scripting: C# v. Python v. Iron Python v. JPython

2007-07-05 Thread MC
Hi! > No. The IDIspatch-interface explicitely lists what methods with what > arguments it has. So code completion is possible there as well. Sorry, I think different. In VS, assists use TLB for find methods & arguments. Dynamic-server can't have TLB. Other way for verify : try a Makepy on a COM

Re: IDEs for COM scripting: C# v. Python v. Iron Python v. JPython

2007-07-05 Thread Siegfried Heintze
Can someone suggest some criterion for selecting Python, JPython or Iron Python for COM Scripting? I have not looked: I assume there are multiple eclipse plugins for Python/JPython/Iron Python. Could someone recommend one? I'll also try out eric that was mentioned previously. I figured out my

Re: IDEs for COM scripting: C# v. Python v. Iron Python v. JPython

2007-07-04 Thread Diez B. Roggisch
Siegfried Heintze schrieb: > I love the typing assist I get when using C# in VS2005 to write COM clients. > > I need to write a program to automate some tasks in outlook. Givin that the > typing assist feature is very important to me, what would be the best > combination of IDE and language for

Re: IDEs for COM scripting: C# v. Python v. Iron Python v. JPython

2007-07-04 Thread Diez B. Roggisch
"M��" schrieb: > Hi! > >> I love the typing assist I get when using C# in VS2005 to write COM >> clients. > > But this run only for static-COM-servers. Dynamic-COM-servers are not > supported by these assists. No. The IDIspatch-interface explicitely list

Re: IDEs for COM scripting: C# v. Python v. Iron Python v. JPython

2007-07-04 Thread M�ta-MCI
Hi! >I love the typing assist I get when using C# in VS2005 to write COM >clients. But this run only for static-COM-servers. Dynamic-COM-servers are not supported by these assists. And, all COM-servers builds with Python are dynamic-COM-server. And also, dynamic-COM-server is a marvelous way fo