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 IList :) I can't wait to make Ironclad/Numpy blow up :) On Tue, Feb 3, 2009 at 8:50 PM, Giles Thomas < gile

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---

[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 Viehland

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] 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") >>> I've tryed t

Re: [IronPython] py to ip

2009-02-03 Thread António Piteira
Shouldn't you do : import clr clr.AddReferenceToFile("DS.dll") from DS import * clr.SetCommandDispatcher( DSX.Channel ) Anyway, can you give us the error or output? -- How is the best practice to convert this code in Iron? >>> import win32com.cl

[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") >>> I've tryed this but don't work: >>> import clr >>> clr.AddReferenceToFile("DS.dll") >>> import DS >>> clr.SetCommandDispatcher( DSX.Channel )

Re: [IronPython] new to Iron and question.

2009-02-03 Thread Glauco Uri
Rodney Howeedy ha scritto: FWIW... I had a client-side COM .dll automation file (used by IE browser) that connects to a WCOM server running under JBoss on Linux connecting via JDBC to Oracle on Solaris. Once we found iPy, we forged ahead with a single Windows host as the intermediary between