Re: [IronPython] how to use IronPython in Silverlight 2

2008-03-06 Thread Dino Viehland
You'll need to download the Silverlight 2 SDK. After installing that you'll get all the necessary components installed into something like C:\Program Files\Microsoft SDKs\Silverlight\v2.0\Libraries\Client. Also installed is an extremely useful tool called Chiron which you'll find somewhere aro

[IronPython] how to use IronPython in Silverlight 2

2008-03-06 Thread Kevin Chu
Silverlight 2 beta1 tools for VS2008 only create C# code file, How to create a IronPython code file? -- Once in a Redmoon ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] file.mode property doesn't exist

2008-03-06 Thread Dave Fugate
Thanks for the bug report. Filed as CodePlex 15484 - http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=15484. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of William Reade Sent: Thursday, March 06, 2008 3:02 AM To: users@lists.ironpython.c

Re: [IronPython] Converting Dict to generic Dictionary

2008-03-06 Thread Slide
Thanks, I figured it out about 2 seconds after I hit send! On Thu, Mar 6, 2008 at 10:54 AM, Srivatsn Narayanan <[EMAIL PROTECTED]> wrote: > You mean dict? This works: > > >>> from System.Collections.Generic import * > >>> a = {'a':23, 'b':42 } > >>> b = Dictionary[object,object](a) > >>> b['a'

Re: [IronPython] Converting Dict to generic Dictionary

2008-03-06 Thread Srivatsn Narayanan
You mean dict? This works: >>> from System.Collections.Generic import * >>> a = {'a':23, 'b':42 } >>> b = Dictionary[object,object](a) >>> b['a'] 23 >>> b.__class__ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Slide Sent: Thursday, March 06, 2008 9:48

[IronPython] Converting Dict to generic Dictionary

2008-03-06 Thread Slide
Is it possible to convert a Dict to a Dictionary? thanks -- slide-o-blog http://slide-o-blog.blogspot.com/ ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

[IronPython] Call another Form from MDI Form

2008-03-06 Thread henry
hello all, I have MDI Form called mainForm and A Form called Form1. In the MDI Form, I added component like MenuStrip, ToolStripItem. When We click ToolStripItem component, it will load a Form1. Is there any example tutorial about this ? note : I'm using IronPythonIntegration for Visual Studio 20

[IronPython] file.mode property doesn't exist

2008-03-06 Thread William Reade
Hi IronPython 1.1.1 (1.1.1) on .NET 2.0.50727.312 Copyright (c) Microsoft Corporation. All rights reserved. >>> f = open("text.txt") >>> f.mode Traceback (most recent call last): File , line 0, in ##82 AttributeError: 'file' objec