Re: [Mono-dev] UI Automation?

2006-08-07 Thread Nagappan
Hi Pablo, If you are writing GTK# based application, then you can use LDTP (http://ldtp.freedesktop.org) for GUI automation. Thanks Nagappan pablosantosluac wrote: Hi, Is there any plans to include UI Automation on mono? Any other way to get similar functionality? pablo

[Mono-dev] The beta version of ADO.NET provider for MaxDB database

2006-08-07 Thread Dmitry Key
Hi! I am currently working on an ADO.Net Provider for MaxDB that is registered in the SourceForge.net (see http://sourceforge.net/projects/maxdbprovider). The binaries are compiled for Net-1.1, Net-2.0 and Mono-1.0. Since the ADO.NET 2.0 is still in the development phase I can not build

[Mono-dev] UI Automation?

2006-08-07 Thread psantosl
Hi, Is there any plans to include UI Automation on mono? Any other way to get similar functionality? pablo ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] The beta version of ADO.NET provider for MaxDB database

2006-08-07 Thread Nagappan
Hi Dmitry, 1. The preview version of ADO.NET will be available with Mono 1.2. 2. Can you please give more details regarding the SIGSEGV ? Procedures to reproduce the bug ? 3. For running the general tests in Big Endian should be same as Little Endian hardware. Recently lot of bugs related to Big

Re: [Mono-dev] The beta version of ADO.NET provider for MaxDB database

2006-08-07 Thread Dmitry Key
Hi, Nagappan 1. The preview version of ADO.NET will be available with Mono 1.2. Ok 2. Can you please give more details regarding the SIGSEGV ? Procedures to reproduce the bug ? I try to run test cases which are working perfectly on .Net (see

Re: [Mono-dev] [PATCH] Use correct console code page on Windows (affects Linux as well)

2006-08-07 Thread Kornél Pál
Hi, Is a wrapper method necessary to avoid DLL loading? What if I use [MethodImplAttribute (MethodImplOptions.NoInlining)] on the P/Invoke method? Will P/Invoke methods be inlined without NoInlining? Kornél - Original Message - From: Zoltan Varga [EMAIL PROTECTED] To: Kornél Pál

Re: [Mono-dev] mcs bug

2006-08-07 Thread Gert Driesen
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Jeroen Frijters Sent: zondag 6 augustus 2006 12:55 To: Marek Safar Cc: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] mcs bug Hi Marek, I spent quite a bit of time

Re: [Mono-dev] [PATCH] Use correct console code page on Windows (affects Linux as well)

2006-08-07 Thread Zoltan Varga
Currently, when a method referencing a pinvoke method is compiled, the pinvoke method is looked up even if it ends up not being called, i.e: void foo () { if (false) a pinvoke method } if foo () is called, the pinvoke method is looked up. thats why I suggested using a wrapper method with the

Re: [Mono-dev] [PATCH] Use correct console code page on Windows (affects Linux as well)

2006-08-07 Thread Kornél Pál
Thanks for this explanation, now I understand why the complicated solution you suggested is required. I committed the patch using wrapper methods; I hope this won't cause kernel32.dll to be loaded on Linux. Kornél - Original Message - From: Zoltan Varga [EMAIL PROTECTED] To: Kornél

[Mono-dev] Server Application

2006-08-07 Thread Tom Mason
Hi, everyone! We are developing a server application (or suite of applications) that will receive requests from clients, run database queries to fulfill those requests, and then return the datasets with the results. The server will continually receive these requests from all over the

Re: [Mono-dev] Server Application

2006-08-07 Thread Michael Schurter
Tom Mason wrote: Hi, everyone! We are developing a server application (or suite of applications) that will receive requests from clients, run database queries to fulfill those requests, and then return the datasets with the results. The server will Thats not very descriptive. It

[Mono-dev] (no subject)

2006-08-07 Thread dev
Is there any work being done on System.Collections.ObjectModel? I see from a quick search someone sent a patch to the list, but I don't think it was ever applied. Specifically I'm interested in ReadOnlyCollection class. I've implemented several interfaces using this and was hoping to not change

Re: [Mono-dev] The beta version of ADO.NET provider for MaxDB database

2006-08-07 Thread Miguel de Icaza
Hello, I have the following question to the Mono developers: 1) When ADO.NET 2 implementation will be complete? Will it be included in the Mono 1.2? To follow up to what Nagappan already said, the 2.0 profile libraries are not something that will be officially complete for the 1.2 release.

Re: [Mono-dev] (no subject)

2006-08-07 Thread Jonathan Pryor
On Mon, 2006-08-07 at 18:20 -0500, [EMAIL PROTECTED] wrote: Is there any work being done on System.Collections.ObjectModel? Work _has_ been done, with the following classes already in svn: System.Collections.ObjectModel.Collection System.Collections.ObjectModel.KeyedCollection