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

2009-04-25 Thread Michael Foord
eev //* wrote: From: Vladimir Eremeev 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

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

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

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

2009-04-23 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: http://www.nabble.com/Please%2C-help-to-get-started-with-.Net-

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 Hamm

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 wrote: > Can IronPython be used in implementing an ActiveX component? This will be

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. http://stackoverflow.com/questions/695986/how-do-you-imp

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
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 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 wrote: > > > Dody Gunawinata wrote: > > > > Can I ask the re

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 i

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 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 application, wr