Re: IronPython Question Programming Software Development by vegaseat IronPython uses the Windows .NET CLR (Common Language Runtime) & libraries and most of the common Python syntax. The standard CPython is written to be cross platform, and that does not include the CLR. For IronPython see: [url]http://www.ironpython.org/[/url] implementations issue Programming Software Development by silvercats IronPython (Python running on .NET) Jython (Python running on the Java … Re: Python GUI Programming Programming Software Development by vegaseat … simplified code using some defaults # tested with IronPython 2.7 by vegaseat import clr clr.AddReference('System….Run(BeerSong()) [/code]The nice thing about ironpython is that you can create a Windows executable … ip_scriptfile = "ip_ListBox_99BoB.py" # location of ironpython and compile utility ipython = "C:/IronPython27/ipy.exe… Re: Someone can convert this to C#? Programming Software Development by TrustyTony … .NET: [url]http://ironpython.codeplex.com/[/url] so you do not need convert. If … Re: IronPython Question Programming Software Development by jcao219 [QUOTE=vegaseat;1083060]IronPython uses the Windows .NET CLR (Common Language Runtime) & libraries …, and that does not include the CLR. For IronPython see: [url]http://www.ironpython.org/[/url][/QUOTE] It wasn't a question… that I had put it in the right place. Also, IronPython is relatively cross-platform and cross-browser. There's mono… Re: IronPython revisited (99 bottlse of beer) Programming Software Development by vegaseat … this way ... ''' compile_ip1.py compile an ironpython sript file to an executable file creates a …into a special directory together with the ironpython script file you want to compile …ip_scriptfile = "ip_ListBox_99BoB.py" # location of ironpython and compile utility ipython = "C:/IronPython2.7… IronPython Question Programming Software Development by jcao219 This code is IronPython! Won't work with CPython. IronPython - Hello World [CODE] import clr clr.AddReference('System.Windows.Forms') … with questions! Start your own thread and title it "IronPython Question" or something. Re: IronPython executable Programming Software Development by jcao219 …;]http://sharpdevelop.net/[/URL]) It'll do that for you. IronPython supports System.Reflection.Emit, and SharpDevelop uses that to create… so glad I'm not the only one who uses IronPython. It's awesome isn't it. IronPython executable Programming Software Development by bumsfeld I am starting to play around with IronPython, but I can't figure out how to convert any code to executable file that will run on Windows. There has got to be some kind of batch file. Ironpython Sharpdevelop Winform tutorial Programming Software Development by ultimatebuster Is there any tutorial for Ironpython and Winform out there that's good? A book that's free would be nice. Also if it involves sharpdevelop it would be pretty kickass. IronPython revisited (99 bottlse of beer) Programming Software Development by vegaseat If you use the Windows OS, then IronPython allows you to create a GUI program taking advantage of the .NET framework. You also have the option to compile the program into a standalone .exe file (and the needed .dll file). Re: IronPython revisited (99 bottlse of beer) Programming Software Development by vegaseat I have read that Microsoft has withdrawn support for IronPython. I guess they have grown worried about the popularity of Python (not one of the languages under their control). switch between forms in ironpython studio Programming Software Development by juand89 … or Delphi), right now I'm doing a program on ironpython studio in wich I need to switch between forms. The…, e As EventArgs) form1.show End Sub[/CODE] However in ironpython, I can't do this simple task, can somebody help… how to match 2 arrays ironpython Programming Software Development by ksmakkapawee I have 2 arrays A = [good, bad, cat, frog] and B = [best, great, ill, evil, wicked, rotten, vicious, poor, nasty, puss, toad, paddock] and I want to match between 2 arrays with ironpython or c# Match Result!! [good : best, great] [bad : ill, evil, wicked, rotten, vicious, poor, nasty] [cat : puss] [frog : toad, paddock] No module named Win32Crypt from IronPython with C# Programming Software Development by Khoo Hello, I'm using import win32crypt from my python file. When I execute the python using IronPython in C# ? I got this error : No Module found Win32Crypt. var ipy = Python.CreateRuntime(); dynamic test = ipy.UseFile(@"mypythonscript.py"); mypythonscript.py import win32crypt ... Re: implementations issue Programming Software Development by Gribouillis … specific needs in your apps. In practice, code written for IronPython will access microsoft .net classes, code written for Jython will… Re: implementations issue Programming Software Development by TrustyTony >Jython is written in Java, yes, and PyPy is writen in Python (or limited subset RPython), but IronPython is .Net friendly implementation, written in C# (thanks, Gribouillis!). Re: implementations issue Programming Software Development by Gribouillis According to wikipedia, ironpython is entirely written in C#. Review of Python Tools for Visual Studio Programming Software Development by jeffcogswell … Python, rather than IronPython, and your choices are IronPython WinForms Application, Python Application, IronPython Application, IronPython Silverlight Application, and IronPython WPF Application. The…> q = MyClass() File "c:\dev\tests\IronPython\IronPythonTests3\PythonApplication1\Program.py", line 5, in __init__ print… Re: Review of Python Tools for Visual Studio Programming Software Development by vegaseat Here is an example of a typical IronPython code ... ''' ip_file_list1.py Ironpython code to load a list with …click on a list line to select the filename IronPython gives access to the Windows .NET or Linux… to get rid of the confusing tabs tested with Ironpython 2.7.4 by vegaseat ''' # add these five… Re: Review of Python Tools for Visual Studio Programming Software Development by Tcll … PT has no problem with it. :) I've never used IronPython as my very first module didn't even work with… Re: Review of Python Tools for Visual Studio Programming Software Development by Tcll am I right in assuming IronPython is Win only, or can it work w/o .NET?? OT: if I'm right, I think that's the reason MS don't like Python. XD MS: oh it works on other OS's besides Windows? we already don't like it. Re: Review of Python Tools for Visual Studio Programming Software Development by vegaseat If you like C#, then IronPython isn't that bad. Re: Review of Python Tools for Visual Studio Programming Software Development by Tcll they did try to kill python via the likes of IronPython which, for starters, is a nightmare to pick up. and … GUI development Programming Software Development by cascade3891 …on and couldn't decide between wxPython, PyQT and/or IronPython or Jython. I decided to go with wxPython after …or more with some. I will try out Jython and IronPython. However my concerns about these two pathways is that …run properly and whether there are cross platform issues. Is ironpython hard to work? i was trying compile the code and… Deciding on a GUI Toolkit/Development path Programming Software Development by cascade3891 …on and couldn't decide between wxPython, PyQT and/or IronPython or Jython. I decided to go with wxPython after …or more with some. I will try out Jython and IronPython. However my concerns about these two pathways is that …run properly and whether there are cross platform issues. Is ironpython hard to work? i was trying compile the code and… Re: Deciding on a GUI Toolkit/Development path Programming Software Development by Stefano Mtangoo Jython/IronPython aren't toolkits for GUI rather implementations of Python in Java/DotNet I use wxPython anyway! Re: Deciding on a GUI Toolkit/Development path Programming Software Development by vegaseat … a Windows machine, but look great on Apple's OS. Ironpython 2.6 is a close equivalent of Python 2.6… Re: Deciding on a GUI Toolkit/Development path Programming Software Development by Stefano Mtangoo … brain. Have anythig changed from 2.x? [QUOTE=vegaseat;1105146] Ironpython 2.6 is a close equivalent of Python 2.6… Python Import CLR help Programming Software Development by sjones1025 … new to Python and have installed Python 2.6 and IronPython 2.6 for .net 4.. I am attempting to write… properly? I also have c:\python26 and c:\program files\IronPython 2.6 for .NET 4.0 in my environment path…