[IronPython] Time out

2010-07-27 Thread Saeli Mathieu
I found a way to solve this problem :) Pretty easy :) public class MyThreadHandle { #region //Your properties here :) public String Error; #endregion //use the constructor to init your properties public MyThreadHandle(PythonEditor pythonEngine) { this.pyEngine = pythonEngine; }

Re: [IronPython] Time out

2010-07-26 Thread Scott Holden
I'm currently dealing with the same issue. So far, a separate thread is the only thing I've come up with, but Thread.Abort seems a bit drastic, and may be hazardous to your health... Is there a safer way? On Fri, Jul 23, 2010 at 8:57 AM, Michael Foord fuzzy...@voidspace.org.ukwrote: On

Re: [IronPython] Time out

2010-07-26 Thread Michael Foord
On 26/07/2010 15:51, Scott Holden wrote: I'm currently dealing with the same issue. So far, a separate thread is the only thing I've come up with, but Thread.Abort seems a bit drastic, and may be hazardous to your health... Is there a safer way? I've not had problems with use of

[IronPython] Time out

2010-07-23 Thread Saeli Mathieu
Hello, I'm sending this email to get more information about a specific using of ironPython. I'm working on a Silverlight 4 project and I'm using IronPython to execute script inside my C# code. The main objective is to allow users to code an AI and send it into our application. The AI will use

Re: [IronPython] Time out

2010-07-23 Thread Michael Foord
On 23/07/2010 14:49, Saeli Mathieu wrote: Hello, I'm sending this email to get more information about a specific using of ironPython. I'm working on a Silverlight 4 project and I'm using IronPython to execute script inside my C# code. The main objective is to allow users to code an AI and