Re: [IronPython] ElementTree bug?

2010-06-18 Thread David Escobar
So is this a known bug, or is expat one of the C-based extension modules that IronPython doesn't handle yet? On Fri, Jun 18, 2010 at 11:56 AM, W. Matthew Wilson wrote: > On Fri, Jun 18, 2010 at 2:51 PM, David Escobar > wrote: > > Hi everyone, > > There seems to be an inconsistency in the Eleme

Re: [IronPython] UI Automation: Wrong values for ControlType, AutomationElementID and more. IronPython 2.6.1

2010-06-18 Thread yngipy hernan
This is what I am doing currently. But I wished I can do all the fun in IronPython without using C#. On Fri, Jun 18, 2010 at 4:08 AM, Lukas Cenovsky wrote: > Just an idea - create a proxy in C# that calls > TreeWalker.ControlViewWalker.GetFirstChild and other methods for you and > return you the

Re: [IronPython] ElementTree bug?

2010-06-18 Thread W. Matthew Wilson
On Fri, Jun 18, 2010 at 2:51 PM, David Escobar wrote: > Hi everyone, > There seems to be an inconsistency in the ElementTree class between CPython > and IronPython. Haha -- yeah, the cpython one works. The problem seems to be that there's no expat module available to IronPython. The traceback m

[IronPython] ElementTree bug?

2010-06-18 Thread David Escobar
Hi everyone, There seems to be an inconsistency in the ElementTree class between CPython and IronPython. In CPython 2.6.4: *Python 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import xml.e

[IronPython] IronPython 2.6 CodePlex Source Update

2010-06-18 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/69747. ADDED SOURCES $/IronPython/IronPython_Main/Languages/IronPython/Tests/Tools/bas

Re: [IronPython] Passing Parameters to a background worker thread

2010-06-18 Thread Lukas Cenovsky
robinsiebler wrote: I'm trying to use BackgroundWorker to make my app multithreaded. I can't figure out how to pass a parameter to it when I call it. How do I do this? Check http://devhawk.net/2008/11/19/IronPython+And+WPF+Part+4+Background+Processing.aspx -- -- Lukáš __

Re: [IronPython] UI Automation: Wrong values for ControlType, AutomationElementID and more. IronPython 2.6.1

2010-06-18 Thread Lukas Cenovsky
Just an idea - create a proxy in C# that calls TreeWalker.ControlViewWalker.GetFirstChild and other methods for you and return you the results. Maybe it will work. The similar way I created the C# proxy to access Win32API functions (http://gui-at.blogspot.com/2008/07/simulate-users-input.html)