[IronPython] IronPython 2.6 CodePlex Source Update

2009-06-01 Thread merllab
This is an automated email letting you know that sources 
have recently been pushed out.  You can download these newer 
sources directly from 
http://ironpython.codeplex.com/SourceControl/changeset/view/53528.

MODIFIED SOURCES

$/IronPython/IronPython_Main/Src/Runtime/Microsoft.Dynamic/Properties/AssemblyInfo.cs

$/IronPython/IronPython_Main/Src/Hosts/SilverLight/Chiron/Properties/AssemblyInfo.cs
$/IronPython/IronPython_Main/Src/IronPythonWindow/AssemblyInfo.cs
$/IronPython/IronPython_Main/Src/IronPythonConsole/AssemblyInfo.cs

$/IronPython/IronPython_Main/Src/IronPython.Modules/Properties/AssemblyInfo.cs
$/IronPython/IronPython_Main/Src/IronPython/Properties/AssemblyInfo.cs

$/IronPython/IronPython_Main/Src/Runtime/Microsoft.Scripting.Core/Compiler/LambdaCompiler.Logical.cs

$/IronPython/IronPython_Main/Src/Runtime/Microsoft.Scripting.Core/Properties/ExtensionAssemblyInfo.cs

$/IronPython/IronPython_Main/Src/Runtime/Microsoft.Scripting.Core/Properties/AssemblyInfo.cs

$/IronPython/IronPython_Main/Src/Runtime/Microsoft.Scripting.Core/Compiler/LambdaCompiler.Binary.cs

$/IronPython/IronPython_Main/Src/Runtime/Microsoft.Scripting/Actions/Calls/OverloadResolver.cs

$/IronPython/IronPython_Main/Src/Runtime/Microsoft.Scripting/Properties/AssemblyInfo.cs



___
Users mailing list
Users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com


Re: [IronPython] Users Digest, Vol 59, Issue 1 /how to work with delegates in IronPython/

2009-06-01 Thread Vadim Khaskel

Michael,

here is my scenario:

I have a list - messageBuffer that captures messages. Once this list gets a new 
message, event generated and combobox ads

a new item.

based on your example 

my combobox will do: self._comboBoxA.Event += function 

Is this just Event or any specific event, I understand that you wrote it in 
general form.

thank you for response,

Vadim


Message: 1
 Date: Sun, 31 May 2009 22:51:54 +0100
 From: Michael Foord fuzzy...@voidspace.org.uk
 Subject: Re: [IronPython] how to work with delegates in IronPython
 To: Discussion of IronPython users@lists.ironpython.com
 Message-ID: 4a22fbfa.3010...@voidspace.org.uk
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed
 
 Vadim Khaskel wrote:
  Hello everybody,
 
  Could somebody help to setup simple delegate in IronPython.
 
  I just need to generate event when list structure gets filled with data,
 
 The standard technique is:
 
 # check delegate signature
 def function(sender, event):
 # do something
 
 instance.Event += function
 
 What is the list event you want to hook up to?
 
 Thanks
 
 Michael Foord
 
  and update GUI element.
 
  thanks a lot,
 
  V.
_
Insert movie times and more without leaving HotmailĀ®.
http://windowslive.com/Tutorial/Hotmail/QuickAdd?ocid=TXT_TAGLM_WL_HM_Tutorial_QuickAdd1_052009___
Users mailing list
Users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com