Re: [Mono-dev] [PATCH] System.Web.UI.ListControl Data Binding

2005-09-27 Thread Gonzalo Paniagua Javier
On Sun, 2005-09-25 at 13:45 +0200, Robert Jordan wrote: Hi! The patch fixes a problem with data binding of simple collections. The bug can be reproduced with XSP's demo site 1.1/databind/databind-attribute.aspx The proper fix is now in svn HEAD. Thanks anyway. -Gonzalo

Re: [Mono-dev] [PATCH] System.Web.UI/ObjectTagBuilder.cs ID handling

2005-09-27 Thread Gonzalo Paniagua Javier
On Sun, 2005-09-25 at 13:48 +0200, Robert Jordan wrote: Hi, The following patch fixes a bug in ObjectTagBuilder.cs. The bug can be reproduced with XSP's demo site 1.1/databind/databind-arraylist.aspx Fixed in svn. Thanks. -Gonzalo ___

Re: [Mono-dev] ViewState Problem

2005-09-27 Thread Hubert FONGARNAND
Le mardi 27 septembre 2005 02:53 -0400, Gonzalo Paniagua Javier a crit: On Mon, 2005-09-26 at 10:10 +0200, Hubert FONGARNAND wrote: I've updated my mono from SVN today, and my ASP.NET app (it used to worked...) has a viewstate problem! Somebody know something about that:

Re: [Mono-dev] [PATCH] Reworked ImageList (updated)

2005-09-27 Thread Kornél Pál
Hi, Hey Kornel, thanks very much for working on this. After applying this patch and updating and rebuilding my libgdiplus (saw you had a patch there) the winforms/treeview sample is crashing for me. If you mean libgdiplus on saw you had a patch there you missed something becasue I don't hack

RE: [Mono-dev] this program doesn't work on mono 1.1.9.1

2005-09-27 Thread Jose Pascual
yes It's truem it does no retrieve any result on windows, but on mono retrieve error! this example was to debug mono, ;-) -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Gonzalo Paniagua Javier Enviado el: martes, 27 de septiembre de 2005 9:08 Para:

Re: [Mono-dev] [PATCH] Reworked ImageList (updated)

2005-09-27 Thread Kornél Pál
If you get some exceptions please post the stack trace as well. Kornél - Original Message - From: Kornél Pál [EMAIL PROTECTED] To: Jackson Harper [EMAIL PROTECTED] Cc: mono-devel-list@lists.ximian.com Sent: Tuesday, September 27, 2005 10:29 AM Subject: Re: [Mono-dev] [PATCH] Reworked

Re: [Mono-dev] How can Mono compile csharp project in WIndowsXP?

2005-09-27 Thread Rafael Ferreira
You should look into Make, nant or maybe set SharpD to use mcs by default. On Mon, 2005-09-26 at 19:01 +0800, wishsand(TOM) wrote: I can just compile single file with the command mcs ... How can I compile csharp project? How does the project organize? Thanks, everyone:)

[Mono-dev] [PATCH] prj2make - resgen for .resx

2005-09-27 Thread T Sureshkumar
hey, prj2make does not compile .resx into .resources. Attached simple patch enables this behavior. if somebody approves, I'll commit. suresh. Index: CsprojInfo.cs === --- CsprojInfo.cs (revision 50720) +++ CsprojInfo.cs

Re: [Mono-dev] How can Mono compile csharp project in WIndowsXP?

2005-09-27 Thread T Sureshkumar
Also, you can use prj2make to convert into makefile under cygwin or prj2make -n, if you have .net SDK. suresh. On Tue, Sep 27, 2005 at 7:06 pm, in message [EMAIL PROTECTED], Rafael Ferreira [EMAIL PROTECTED] wrote: You should look into Make, nant or maybe set SharpD to use mcs by default.

[Mono-dev] Compiling System.Web with CSC

2005-09-27 Thread Eyal Alaluf
Hi, Miguel. Grasshopper requires the use of Microsoft C# compiler. As mentioned before we depend upon the pdb file for our debugging support. In the patches I have sent I have removed the dependency on C# 2.0 features from System.Web (under #if TARGET_J2EE/JVM). However, if System.Web adds more

Re: [Mono-dev] Compiling System.Web with CSC

2005-09-27 Thread Miguel de Icaza
Hello, I suggest that we decide together not to increase the dependency on c# 2.0 features in System.Web (1.1 configuration). I believe that it is a simple and practical approach without many side effects. What do you think? I think it is a bad idea, specially considering that it means that

[Mono-dev] tomboy install question

2005-09-27 Thread David
When I install tomboy, I get following messages when I use ./configure checking for libgnomeprint-2.2 libgnomeprintui-2.2 gdk-2.0 = 2.2.3 gtk+-2.0 = 2.2.3 atk = 1.2.4... Package libgnomeprint-2.2 was not found in the

[Mono-dev] Re: [Mono-devel-list] AOT + Embedding = ?

2005-09-27 Thread Zoltan Varga
Hey, MONO_LOG_LEVEL=debug reports AOT loaded AOT Module for each of my assemblies. I double checked by hiding the AOT output so it wasn't found and got almost identical profile results, so it doesn't look like AOT compilation is saving any work. The

Re: [Mono-dev] Compiling System.Web with CSC

2005-09-27 Thread Miguel de Icaza
Hello, We did not use the cross-platform API in the past because we did not have information on how to use it, but now IronPython has code that shows how to use it. Does this mean that PDB files can be read and written all paltforms or only means using MS supplied DLLs on Windows?

RE: [Mono-dev] this program doesn't work on mono 1.1.9.1

2005-09-27 Thread Gonzalo Paniagua Javier
On Tue, 2005-09-27 at 11:37 +0200, Jose Pascual wrote: yes It's truem it does no retrieve any result on windows, but on mono retrieve error! this example was to debug mono, ;-) I didn't get any error on mono. Just the 0 retrieved results message. -Gonzalo

Re: [Mono-dev] Compiling System.Web with CSC

2005-09-27 Thread Miguel de Icaza
Hello, I think it is a bad idea, specially considering that it means that we have to write more and debug more code than we otherwise would. There is an easy solution that I mentioned before which is that we can add support to mcs to generate pdb files instead. MCS already uses the API

Re: [Mono-dev] this program doesn't work on mono 1.1.9.1

2005-09-27 Thread Miguel de Icaza
Hello, If you find it interested! the below program doesn't work on mono 1.1.9.1, The program fails also with .NET, am afraid the code is buggy. Miguel ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] this program doesn't work on mono 1.1.9.1

2005-09-27 Thread Miguel de Icaza
Hello, If you find it interested! the below program doesn't work on mono 1.1.9.1, I see that the code is just a screen-scraper, no wonder it fails. Thats a very fragile mechanism, and it will break every time Google makes a change to their generated HTML.

Re: [Mono-dev] Memory leaks

2005-09-27 Thread Miguel de Icaza
Hello, I ported a simulation from Visual C# beta 2 to mono this week. You can't really call it porting, because I only had to remove references to Stopwatch. But anyway, thanks to all of you for making it so easy. It is a long running application, therefore I used an IA64 at work. Almost

Re: [Mono-dev] [PATCH] Reworked ImageList (updated)

2005-09-27 Thread Jackson Harper
Hi this patch looks ok to me except for the line endings and some of the coding style. Feel free to commit after fixing these. Thanks! Jackson On Tue, 2005-09-27 at 14:10 +0200, Kornél Pál wrote: If you get some exceptions please post the stack trace as well. Kornél - Original