Re: [Mono-dev] Regressions.

2005-10-06 Thread Raja R Harinath
Hi, Miguel de Icaza <[EMAIL PROTECTED]> writes: > Your recent changes to the MBas compiler introduced a bunch of > regressions that are breaking the automated tests. > > Please revert those patches and fix the build. > > Test/ArithmeticOperators1.vb(28,1) error BC2: Parsing error > Test/Arith

[Mono-dev] [Patch] DataGrid.BoundColumn doesn't respect ReadOnly

2005-10-06 Thread Kjell Risholm
Hi, Seems like the attached (tiny) patch fixes the issue in subject. Regards Kjell Risholm Index: BoundColumn.cs === --- BoundColumn.cs (revisjon 51366) +++ BoundColumn.cs (arbeidskopi) @@ -100,11 +100,16 @@ cell.DataBinding +=

[Mono-dev] Regressions.

2005-10-06 Thread Miguel de Icaza
Your recent changes to the MBas compiler introduced a bunch of regressions that are breaking the automated tests. Please revert those patches and fix the build. Test/ArithmeticOperators1.vb(28,1) error BC2: Parsing error Test/ArithmeticOperators2.vb(28,1) error BC2: Parsing error Test/Ari

Re: [Mono-dev] Building Mono on Windows is extremely slow

2005-10-06 Thread Wade Berrier
Could also cross compile from linux :) Right now ./configure treats mingw and cygwin the same. You'd have to make some adjustments for the mingw target, but the compile times would definitely be faster. Wade On Thu, 2005-10-06 at 06:52 -0400, Jonathan Pryor wrote: > On Wed, 2005-10-05 at 13:32

[Mono-dev] [Patch] Avoid creating version in AssemblyName ctor

2005-10-06 Thread Carlos Alberto Cortez
Hey, The attached patch adds a param to mono_assembly_name_parse_full, which lets us avoid creating 'version' if it wasn't defined. This helps us to have the same behavior when the version wasn't defined in AssemblyName(string name). Carlos. Index: assembly.c ===

Re: [Mono-dev] Re: Mono.Cairo Memory Leak

2005-10-06 Thread John Luke
Hello, On Thu, 2005-10-06 at 13:48 -0500, Manuel Alejandro Cerón Estrada wrote: > Hi Robert, > > Thanks for your answer. I have tried to put ((IDisposable)g).Dispose > (); just at the end of OnMontionNotifyEvent, but, unfortunately, this > does not fix the problem. > Here is the relevant bug: ht

Re: [Mono-dev] Re: Mono.Cairo Memory Leak

2005-10-06 Thread Manuel Alejandro Cerón Estrada
Hi Robert, Thanks for your answer. I have tried to put ((IDisposable)g).Dispose (); just at the end of OnMontionNotifyEvent, but, unfortunately, this does not fix the problem. Manuel. 2005/10/6, Robert Jordan <[EMAIL PROTECTED]>: > You're not calling g.Dispose () or ((IDisposable)g).Dispose ();

Re: [Mono-dev] system class

2005-10-06 Thread Kornél Pál
If you can make them understand the power behing open source I think they will let it released.:) Open source is good for them as well, as currently they have a version. They paid for it. But unless they pay for it again and again it's bugs won't be fixed and it will be outdated after some time.

Re: [Mono-dev] Mono structure of development

2005-10-06 Thread Massimiliano Mantione
On Thu, 2005-10-06 at 08:27 -0700, Harry wrote: > I have a questions regarding Mono structure > development. I have tried all the link at Mono > website, but I couldn't find it. here is my questions. I think you are referring to the "mono" and "mcs" svn modules (which means directories in the sou

Re: [Mono-dev] Mono structure of development

2005-10-06 Thread Pascal Fresnay
Harry a écrit : Hi All, I have a questions regarding Mono structure development. I have tried all the link at Mono website, but I couldn't find it. here is my questions. 1. Is Mono only supporting runtime not the library for all other programming languages? All libraries are accessible fo

Re: [Mono-dev] system class

2005-10-06 Thread Robert Jordan
Hi Will, As I understand it the main difficulty in dealing with Microsoft's WMI implementation is that it runs over DCOM and not a standard protocol such as HTTP. I wrote a C# DCOM stack and WMI implementation for my company, but since they own it and not me I can't release it into the Mono cla

[Mono-dev] Mono structure of development

2005-10-06 Thread Harry
Hi All, I have a questions regarding Mono structure development. I have tried all the link at Mono website, but I couldn't find it. here is my questions. 1. Is Mono only supporting runtime not the library for all other programming languages? 2. Why all the library such as System, System.Drawin

Re: [Mono-dev] Problem with asmx file

2005-10-06 Thread Atsushi Eno
Hi, There was a bug that blocked WSDL processing, which I fixed yesterday. So if you were trying mono/mcs from svn, please try the latest svn. Atsushi Eno Johann BLAIS wrote: Hello, I've created a webservice named General and generated the wsdl file using gSoap. I generated the proxy with th

Re: [Mono-dev] system class

2005-10-06 Thread Matthijs ter Woord
Well, you could always ask your employer :-) Greets, Matthijs ter Woord - Original Message - From: "Will Weisser" <[EMAIL PROTECTED]> To: Sent: Wednesday, October 05, 2005 7:20 PM Subject: RE: [Mono-dev] system class As I understand it the main difficulty in dealing with Microsoft'

Re: [Mono-dev] How to access method arguments in custom profiler

2005-10-06 Thread Zoltan Varga
Hi, With the current mono code, you can't. It is possible to modify the runtime code to allow this, take a look at how tracing is implemented (i.e. mini/trace.c). Zoltan On 10/5/05, Riccardo Scandariato <[EMAIL PROTECTED]> wrote:

RE: [Mono-dev] system class

2005-10-06 Thread Will Weisser
As I understand it the main difficulty in dealing with Microsoft's WMI implementation is that it runs over DCOM and not a standard protocol such as HTTP. I wrote a C# DCOM stack and WMI implementation for my company, but since they own it and not me I can't release it into the Mono class libs.

[Mono-dev] Webservices and GtkSharp

2005-10-06 Thread Luca Scaramella
I'm trying to use MONO under w2k. The sample i've found at http://www.mono-project.com/Webservices_and_GtkSharp explains to me how to create a web service under gtk#. When i compile the RemoteWebService.cs with mcs i've got no errors. When i try to test it with Browser and xsp i've got this m

[Mono-dev] Re: [Mono-list] Re: Can't install Mono 1.1.9.1 from sources!

2005-10-06 Thread johnlopezj
I had the same problem, and followed the advice below and it worked!  I just wanted to contribute that, so hopefully it will work for you as well.   JL  -Original Message-From: Robert Jordan <[EMAIL PROTECTED]>To: Mono-list@lists.ximian.comCc: mono-devel-list@lists.ximian.comSent: Tue, 04

[Mono-dev] How to access method arguments in custom profiler

2005-10-06 Thread Riccardo Scandariato
Hi folks, I'm developing a custom profiler, which installs callbacks for method enter/leave occurrences, as follows: #include void mono_profiler_startup (const char *desc) { /* snip */ mono_profiler_install_enter_leave (my_method_enter, my_method_leave); } I'm looking for an easy way t

[Mono-dev] [PATCH] Initial (bad) attempt at making MonoInst.klass always meaningfu

2005-10-06 Thread Massimiliano Mantione
Hello, this code is needed by type based alias analysis. In this kind of analysis we need to know as precisely as possible the class of every managed pointer that refers to an object (those referring to value types are not relevant here). In our IR, this kind of info is stored in the "klass" fie

[Mono-dev] Problem with asmx file

2005-10-06 Thread Johann BLAIS
Hello, I've created a webservice named General and generated the wsdl file using gSoap. I generated the proxy with the wsdl tool. I want to test it using DefaultWsdlHelpGenerator.aspx. So i wrote a simple index.asmx containing <%@ WebService Class="General" %> I put the compiled DLL into the bi

Re: [Mono-dev] Building Mono on Windows is extremely slow

2005-10-06 Thread Jonathan Pryor
On Wed, 2005-10-05 at 13:32 +0200, Kornél Pál wrote: > Building Mono on Windows is much slower than building it on Linux for > example. The problem seems to be that our scripts use a lot of processes. > Processes on Linux are lightweight but are heavyweight on Windows that > results in delays becau

Re: [Mono-dev] [Patch] Extern alias (with modifications)

2005-10-06 Thread Marek Safar
Hello Carlos, Do you have tests for this? I am expecially wondering about CS1679, CS1680. BTW: Hari's comments are very good. Marek Hey, I applied the corrections made by Hari and all my tests are working fine. Comments and suggestions are welcome. Carlos. ---

[Mono-dev] Re: Mono.Cairo Memory Leak

2005-10-06 Thread Robert Jordan
Manuel, I'm writing an interactive canvas for the MonoUML Case Tool. I'm using Cairo with Gtk# and I have experimented an ascending memory consumption when drawings are continuously performed, for example inside a MotionNotifyEvent Handler. This memory is never released and eventually SWAP memor

Re: [Mono-dev] Win32 build broken

2005-10-06 Thread Gonzalo Paniagua Javier
On Tue, 2005-10-04 at 15:22 +0200, Kornél Pál wrote: > Hi, > > Thanks for the fix. > > ETXTBSY seems to be a POSIX error code while all the other error codes are > Win32 error codes so I think this is an error in the code itself rather than > a missed #if !PLATFORM_WIN32. According to the documen

[Mono-dev] Re: [Mono-list] Re: Can't install Mono 1.1.9.1 from sources!

2005-10-06 Thread Vadim B. Guzev
Yes, thanks, it works for me too :) Vadim >I had the same problem, and followed the advice below and it worked! I just >wanted to contribute that, so hopefully it will work for you as well. > >JL > >-Original Message- >From: Robert Jordan <[EMAIL PROTECTED]> >To: Mono-list@lists.ximi

Re: [Mono-dev] [Patch] Extern alias (with modifications)

2005-10-06 Thread Raja R Harinath
Hi, Carlos Alberto Cortez <[EMAIL PROTECTED]> writes: > I applied the corrections made by Hari and all my tests are working > fine. > > Comments and suggestions are welcome. Ok. I like this much much better :-) However, I have some nits. Nothing earth-shattering, but will help keep the code m