Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-25 Thread Michael Foord
: From: Vladimir Eremeev wl2...@gmail.com Subject: Re: [IronPython] Please, help to get started with .Net and IronPython. To: users@lists.ironpython.com Date: Friday, April 24, 2009, 2:40 AM William Reade wrote: I think he's rewriting a C++ component in IronPython

Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-24 Thread Vladimir Eremeev
William Reade wrote: I think he's rewriting a C++ component in IronPython, and wants to know how he can minimise the impact on the C# application which hosts it. That's right! Thank you. -- View this message in context:

Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-24 Thread Richard Hinerfeld
the IronPython socket.cs file to fix this problem. Good Luck Richard D. Hinerfeld --- On Fri, 4/24/09, Vladimir Eremeev wl2...@gmail.com wrote: From: Vladimir Eremeev wl2...@gmail.com Subject: Re: [IronPython] Please, help to get started with .Net and IronPython. To: users@lists.ironpython.com Date: Friday

[IronPython] Please, help to get started with .Net and IronPython.

2009-04-23 Thread Vladimir Eremeev
Hi all. I am trying to get started in programming with .Net and IronPython. I am involved in a project of developing a large application, written in C#. I have joined the project when it was already evolved, and have begun from extending other person's C++ code. This code implements an ActiveX

Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-23 Thread Dody Gunawinata
Can I ask the reason why you want to rewrite portion of this application in IronPython? On Thu, Apr 23, 2009 at 10:44 AM, Vladimir Eremeev wl2...@gmail.com wrote: Hi all. I am trying to get started in programming with .Net and IronPython. I am involved in a project of developing a large

Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-23 Thread Vladimir Eremeev
Dody Gunawinata wrote: Can I ask the reason why you want to rewrite portion of this application in IronPython? I am tired fighting with memory leaks, data type conversions, etc. I don't like the C# language, its subjective. Just don't like. However, I have a basic understanding of it.

Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-23 Thread Curt Hagenlocher
It's great that you want to improve your skills. But I feel obliged to point out that IronPython -- and CPython, for that matter -- are about equally susceptible to memory leaks as C#. On Thu, Apr 23, 2009 at 2:00 AM, Vladimir Eremeev wl2...@gmail.com wrote: Dody Gunawinata wrote: Can I

Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-23 Thread Dody Gunawinata
This is a good starting point of reference http://www.ironpython.info/index.php/Contents for IronPython techniques for WinForms application. I would suggest you use IronPython in areas where you want to enhance the application, possibility in scripting the application or providing plugins. I would

Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-23 Thread William Reade
I think he's rewriting a C++ component in IronPython, and wants to know how he can minimise the impact on the C# application which hosts it. Curt Hagenlocher wrote: It's great that you want to improve your skills. But I feel obliged to point out that IronPython -- and CPython, for that matter

Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-23 Thread Dody Gunawinata
Can IronPython be used in implementing an ActiveX component? This will be the shortest path if possible. Otherwise one way to do it is to declare a C# based interface, refactor the host application to use it and implement the interface in IP.

Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-23 Thread Curt Hagenlocher
Implementing a COM component from IronPython isn't something you can reasonably due -- at a minimum, you either need to write a lot of IL yourself or use C# as glue. On Thu, Apr 23, 2009 at 7:00 AM, Dody Gunawinata empirebuil...@gmail.comwrote: Can IronPython be used in implementing an ActiveX

Re: [IronPython] Please, help to get started with .Net and IronPython.

2009-04-23 Thread Vernon Cole
On the other hand, implementing a COM component in CPython using the pywin32 toolkit is fairly easy. Unless you have some other reason for choosing IronPython rather than CPython you may want to consider that. An example is published on page 68 of the book Python Programming on Win32 by Mark