RE: [IronPython] Making A Windows Form App

2005-07-15 Thread Freddie Witherden
<[EMAIL PROTECTED]> Reply-To: Discussion of IronPython To: users-ironpython.com@lists.ironpython.com Subject: RE: [IronPython] Making A Windows Form App Date: Tue, 12 Jul 2005 16:26:30 -0400 MIME-Version: 1.0 Received: from three.mx.123-reg.co.uk ([195.224.48.124]) by MC6-F31.hotmail.co

RE: [IronPython] Making A Windows Form App

2005-07-14 Thread Keith J. Farmer
users-ironpython.com@lists.ironpython.com Subject: RE: [IronPython] Making A Windows Form App [Note. it would be really nice to tie together MyXaml + SharpDevelop + IronPython. Ideas anyone ?] <>___ users-ironpython.com mailing list users-iro

RE: [IronPython] Making A Windows Form App

2005-07-14 Thread Richard Hsu
one ?] Date: Wed, 06 Jul 2005 21:22:00 + From: "Freddie Witherden" <[EMAIL PROTECTED]> Subject: RE: [IronPython] Making A Windows Form App To: users-ironpython.com@lists.ironpython.com Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; format=flowed Namespaces

RE: [IronPython] Making A Windows Form App

2005-07-13 Thread Rakesh Ravuri
-- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Martin Maly Sent: Tuesday, July 12, 2005 4:24 AM To: Discussion of IronPython Subject: RE: [IronPython] Making A Windows Form App The command line tool that comes with IronPython runs in the standard Windows console. You can set up th

RE: [IronPython] Making A Windows Form App

2005-07-11 Thread Martin Maly
age- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Freddie Witherden > Sent: Wednesday, July 06, 2005 2:22 PM > To: users-ironpython.com@lists.ironpython.com > Subject: RE: [IronPython] Making A Windows Form App > > Namespaces are the biggest problem, LoadA

RE: [IronPython] Making A Windows Form App

2005-07-11 Thread Freddie Witherden
ith it and lots of people use Jython so it must work. From: Jim Hugunin <[EMAIL PROTECTED]> Reply-To: Discussion of IronPython To: "Discussion of IronPython" Subject: RE: [IronPython] Making A Windows Form App Date: Wed, 6 Jul 2005 17:23:55 -0700 MIME-Version: 1.0 Received: f

RE: [IronPython] Making A Windows Form App

2005-07-11 Thread Freddie Witherden
a long way. From: Martin Maly <[EMAIL PROTECTED]> Reply-To: Discussion of IronPython To: "Discussion of IronPython" Subject: RE: [IronPython] Making A Windows Form App Date: Wed, 6 Jul 2005 13:13:17 -0700 MIME-Version: 1.0 Received: from moutng.kundenserver.de ([212.227.126.183

Re: [IronPython] Making A Windows Form App

2005-07-07 Thread Niki Spahiev
Keith J. Farmer wrote: I see problems with #3, at least using those precise keywords. A variant of #3, perhaps reference from System.Drawing import * or maybe: from iron import declare_ declare_namespaces(assembly, 'System.Drawing', 'System.Drawing.Text', ...) from System.Drawin

Re: [IronPython] Making A Windows Form App

2005-07-07 Thread xtian
On 7/7/05, Keith J. Farmer <[EMAIL PROTECTED]> wrote: > I see problems with #3, at least using those precise keywords. > > A variant of #3, perhaps > > reference > from System.Drawing import * > This seems like a good option - referencing an assembly is essentially orthogonal to import

RE: [IronPython] Making A Windows Form App

2005-07-06 Thread Hank Fay
y, July 06, 2005 8:24 PM To: Discussion of IronPython Subject: RE: [IronPython] Making A Windows Form App We clearly need a better design than the current sys.LoadAssembly* methods. For one thing, we shouldn't really be adding these to the existing sys module but putting new methods lik

RE: [IronPython] Making A Windows Form App

2005-07-06 Thread Keith J. Farmer
s for the GAC, or some similar cache. So my thinking: well-known assemblies: ~#4 others, or override: #3 (reference) From: [EMAIL PROTECTED] on behalf of Jim Hugunin Sent: Wed 7/6/2005 5:23 PM To: Discussion of IronPython Subject: RE: [IronPython] Makin

Re: [IronPython] Making A Windows Form App

2005-07-06 Thread Lloyd Dupont
I like #3 very much! (the 'from' clause being optional... (in case you import multiple namespace from one assembly)) - Original Message - From: "Jim Hugunin" <[EMAIL PROTECTED]> 3. Extend import, i.e. import System.Drawing from System.Drawing. Of course, the most obvious ways to do t

RE: [IronPython] Making A Windows Form App

2005-07-06 Thread Jim Hugunin
k/archive/2003/05/30/57159.aspx Thanks - Jim From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Keith J. Farmer Sent: Wednesday, July 06, 2005 1:36 PM To: Discussion of IronPython Subject: RE: [IronPython] Making A Windows Form App Out of curiosi

RE: [IronPython] Making A Windows Form App

2005-07-06 Thread Keith J. Farmer
Out of curiosity, would it be possible to get IronPython to make a best-guess attempt at automatically loading an appropriate assembly, if it discovers that it doesn't know the namespace? This could alleviate the problems people have with remembering sys.LoadAssemblyByName. __

RE: [IronPython] Making A Windows Form App

2005-07-06 Thread Martin Maly
Hi Freddie, Below is the working code. I would be interested to hear what you had most problems with. Common difficulty is the LoadAssemblyByName function. Feel free to post feedback to this discussion alias. We are interested to hear what roadblocks developers encounter as they try to use IronPyt

[IronPython] Making A Windows Form App

2005-07-06 Thread Freddie Witherden
Hi, I am trying to convert a very simple C# windows form test that I made into IronPython (to see that it can be done). However I have tried over 20 different ways with no luck. Can anyone help me? There is very very little documentation on IronPython, which I think needs to be addressed. The co