Re: [IronPython] Running the IronPython tests (on Mono)

2010-02-22 Thread Tomas Matousek
To run IronRuby tests you can use Merlin\Main\Languages\Ruby\Scripts\irtests.rb. But it won't run on Linux as is due to dependencies on various batch files. We should replace all of them by Ruby scripts in future so that it runs on Linux as well. Tomas -Original Message- From:

Re: [IronPython] Is it possible to associate an IronPython asp.net webform to a dll file?

2010-02-22 Thread Dody Gunawinata
hmm..there's nothing that I am aware of. The only thing that I found working is setting up a single custom class to be inherited by all the aspx.py file. On Mon, Feb 22, 2010 at 2:58 PM, Pablo Dalmazzo pablodalm...@hotmail.comwrote: Hi there, In ASP.NET with the normal ASP model you could

Re: [IronPython] Running the IronPython tests (on Mono)

2010-02-22 Thread C.J. Adams-Collier
Thanks Tomas, I recall doing a bit of work on this with Ivan last year. I think we got most of them performing reasonably. I don't remember whether we re-wrote the batch files in ruby or bash or whatever... we should probably do that at some point... Cheers, C.J. On Mon, 2010-02-22 at 17:19

[IronPython] Events on Buttons, and Focus, in IronPython

2010-02-22 Thread Ken MacDonald
Hi, I've inherited an I-P app, and trying to make some sense of it... It has a login page, with several text fields including user and password; and OK and CANCEL buttons. Right now, you enter the user/password into the text fields, and then have to click the OK button to login. Customer would

Re: [IronPython] Events on Buttons, and Focus, in IronPython

2010-02-22 Thread Ken MacDonald
Aaaah. Managed mix up my args; seems to work OK now. Sorry. Ken On Mon, Feb 22, 2010 at 3:55 PM, Ken MacDonald drken...@gmail.com wrote: Hi, I've inherited an I-P app, and trying to make some sense of it... It has a login page, with several text fields including user and password; and Oed to

Re: [IronPython] Events on Buttons, and Focus, in IronPython

2010-02-22 Thread Curt Hagenlocher
You want args.Key instead of e.Key. The standard event signature is function(object sender, EventArgs args). But the better way to do this is to set the OK button to be the default button. In Winforms, this is a property on the form: form.AcceptButton = self.ok_button. On Mon, Feb 22, 2010 at

Re: [IronPython] Running the IronPython tests (on Mono)

2010-02-22 Thread Dave Fugate
For IronPython, try running: IronPython\Tests ipy.exe harness.py I haven't tried running this recently, but it did work about a year ago... Dave -Original Message- From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of C.J. Adams-Collier