Thanks Curt.

The sample I was looking at (
http://www.ironpython.info/index.php/Invoking_onto_the_GUI_(Control)_Thread)
was
using:

   from IronPython.Runtime.Calls import CallTarget0

Poking around IronPython assemblies I found the following worked on 2.0B4:

  import clr
  clr.AddReference('IronPython')
  from IronPython.Compiler import CallTarget0

Thanks,

Davy Mitchell

On Mon, Aug 11, 2008 at 9:27 PM, Curt Hagenlocher <[EMAIL PROTECTED]>wrote:

> It's defined in PythonCallTargets.cs; the definition is simply "public
> delegate object CallTarget0();".  That is, it's a delegate with no
> arguments.
> On Mon, Aug 11, 2008 at 1:00 PM, Davy Mitchell <[EMAIL PROTECTED]>wrote:
>
>> Hi Folks,
>>
>> Sorry Google is failing me... is there Documentation for CallTarget0
>> somewhere?
>>
>> Thanks,
>> Davy
>>
>> _______________________________________________
>> Users mailing list
>> [email protected]
>> http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
>>
>>
>
> _______________________________________________
> Users mailing list
> [email protected]
> http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
>
>
_______________________________________________
Users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to