Re: [IronPython] [Language Question] Building a function pointer/delegate like

2007-06-20 Thread Mohamed A. Meligy
This did the trick for me :) Thanks a lot for the extreme quick response! On 6/20/07, Sanghyeon Seo <[EMAIL PROTECTED]> wrote: 2007/6/20, Mohamed A. Meligy <[EMAIL PROTECTED]>: > (snip) > What I get then is a runtime exception saying that _FilterFunction is not > callable. Use global statemen

Re: [IronPython] [Language Question] Building a function pointer/delegate like

2007-06-20 Thread Sanghyeon Seo
2007/6/20, Mohamed A. Meligy <[EMAIL PROTECTED]>: > (snip) > What I get then is a runtime exception saying that _FilterFunction is not > callable. Use global statement in SetFilterFunction (i.e. where you *assign* global variable), not Filter_Change. -- Seo Sanghyeon

[IronPython] [Language Question] Building a function pointer/delegate like

2007-06-19 Thread Mohamed A. Meligy
Hey all, I'm trying to build a filter web user control using IP 2.0 (included in ASP.NET 2.0 Futures May 2007 CTP). In it, I need other pages/controls using this filtering control to be able to assign a property in the filter control to a method in that pages/control using the filter, so, inside t