[IronPython] py to ip

2009-02-03 Thread Glauco Uri
How is the best practice to convert this code in Iron? import win32com.client win32com.client.Dispatch(DS.Channel) win32com.gen_py.DSA -_Channel instance at 0x15331416 I've tryed this but don't work: import clr clr.AddReferenceToFile(DS.dll) import DS

Re: [IronPython] py to ip

2009-02-03 Thread António Piteira
I'm sorry, forget what I said... I have done AddReferenceToFile, my mistake. But still, what is the output? - How is the best practice to convert this code in Iron? import win32com.client win32com.client.Dispatch(DS.Channel) win32com.gen_py.DSA

Re: [IronPython] new to Iron and question.

2009-02-03 Thread Rodney Howeedy
The COM file in my case was a .dll in the common files directory off my system root. Please reference the IronPython tutorial on how to use the .NET SDK and what it does. No, it does not decompile a dll into source code. From my standpoint, it mapped class definitions from my COM file into

Re: [IronPython] Resolver One 1.4 beta - with IronPython 2.0

2009-02-03 Thread Dan Shechter
Here! I can't wait to use it with NumPy. I actually have a .NET C# assembly that does some really nasty low-level stuff like loading data from memory mapped files and wrapping them with IListT :) I can't wait to make Ironclad/Numpy blow up :) On Tue, Feb 3, 2009 at 8:50 PM, Giles Thomas

[IronPython] Resolver One 1.4 beta - with IronPython 2.0

2009-02-03 Thread Giles Thomas
Hi all, Version 1.4 of Resolver One, our Pythonic spreadsheet, is based on IronPython 2.0, and includes (alpha-level) support for numpy using our Ironclad project. We're releasing the beta tomorrow: this has a few performance problems (which are being addressed - many thanks to Dino

Re: [IronPython] py to ip

2009-02-03 Thread Shri Borde
See http://blogs.msdn.com/shrib/archive/2008/07/30/idispatch-support-on-in-ironpython-beta-4.aspx for the details. import System t = System.Type.GetTypeFromProgID(Excel.Application) excel = System.Activator.CreateInstance(t) wb = excel.Workbooks.Add() -Original Message- From: