Re: [IronPython] IronPython versus Tkinter...

2006-06-04 Thread Kurt Harriger
Sounds like you're just using the wrong tool for the task at hand. If CPython has what you need and you don't want or need to use .Net then why not just use CPython? Sorry, I couldn't help but point that out :). I agree that it would be nice to be able to use more of the existing python libraries

Re: [IronPython] IronPython & Windows Forms

2006-06-04 Thread Sanghyeon Seo
2006/6/5, Kevin Bjorke <[EMAIL PROTECTED]>: > There are only .png files in this dir, no html? The entry is at Michael Foord's blog: http://www.voidspace.org.uk/python/weblog/arch_d7_2006_06_03.shtml#e352 Seo Sanghyeon ___ users mailing list users@lists.

Re: [IronPython] IronPython versus Tkinter...

2006-06-04 Thread Kevin Bjorke
That is bizarre, considering that Tk works fine under windows. Theu underlying purpose of python seems to be subverted by the lack of what most folks think of as basic python services, no? kb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Foord

Re: [IronPython] IronPython & Windows Forms

2006-06-04 Thread Kevin Bjorke
There are only .png files in this dir, no html? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Foord Sent: Sunday, June 04, 2006 2:55 PM To: Discussion of IronPython Subject: Re: [IronPython] IronPython & Windows Forms Sanghyeon Seo wrote: > 200

Re: [IronPython] IronPython & Windows Forms

2006-06-04 Thread Michael Foord
Sanghyeon Seo wrote: > 2006/6/4, Michael Foord <[EMAIL PROTECTED]>: > >> Another bout of insomnia, so I've done a new entry on IronPython & >> Windows Forms : >> > > Insomnia is good! I've done the shots: > http://sparcs.kaist.ac.kr/~tinuviel/fepy/winforms/ > > Watch out! The text used is *

Re: [IronPython] IronPython versus Tkinter...

2006-06-04 Thread Michael Foord
Kevin Bjorke wrote: > > Any clues on running this under Beta7, or is it currently non-functional? > > I want to be able to run a GUI under both IronPython and Cpython since > my app's intent targets two different kinds of host machine. > > Current behavior: > > I have a Tkinter app called "smtk" w

[IronPython] IronPython versus Tkinter...

2006-06-04 Thread Kevin Bjorke
Title: IronPython versus Tkinter... Any clues on running this under Beta7, or is it currently non-functional? I want to be able to run a GUI under both IronPython and Cpython since my app's intent targets two different kinds of host machine. Current behavior: I have a Tkinter app called

Re: [IronPython] IronPython support In Visual Studio 2005 AprilVSSDK?

2006-06-04 Thread David-John Miller
Hi, just spotted a quick error!   >>> from System.Reflection import * >>> a = Assembly.LoadFrom("mapack.dll") >>> Types = a.GetTypes() >>> for Type in Types: ...   print Types ...   Try this instead >>> from System.Reflection import * >>> a = Assembly.LoadFrom("mapack.dll") >>>

Re: [IronPython] [Python.NET] Naming and resolution of generic types (complete!)

2006-06-04 Thread Brian Lloyd
Thanks for the reply - luckily this is pretty much where I ended up as well ;) One unlikely-but-technically-possible edge case I ran into was: - user imports assembly A that contains the generic type 'foo.bar.SomeType' - user creates instances of that type - then the user imports assembly

Re: [IronPython] IronPython & Windows Forms

2006-06-04 Thread Sanghyeon Seo
2006/6/4, Michael Foord <[EMAIL PROTECTED]>: > Another bout of insomnia, so I've done a new entry on IronPython & > Windows Forms : Insomnia is good! I've done the shots: http://sparcs.kaist.ac.kr/~tinuviel/fepy/winforms/ Watch out! The text used is *slightly* different! :) Seo Sanghyeon ___

[IronPython] import array

2006-06-04 Thread JoeSox
I need to import the array module. Is there a workaround or do I need to create a custom module? Thanks -- Later, Joe ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

[IronPython] IronPython & Windows Forms

2006-06-04 Thread Michael Foord
Hello all, Another bout of insomnia, so I've done a new entry on IronPython & Windows Forms : http://www.voidspace.org.uk/python/weblog/arch_d7_2006_06_03.shtml#e352 This is on the "The TextBox Widget". Comments appreciated - particularly if you pick up on any mistakes. All the best, Mic