[Mono-winforms-list] TreeView

2007-03-22 Thread Sponsel, Carsten (ext)
Hi, I want to use the TreeView in my application, but unfortunately it does not call my Mouse event handlers on clicking into the tree view. Is that a known error and is there an estimation when it will be fixed, or am i using it wrong (under Windows the same code works). I'm using mono version

Re: [Mono-dev] Building Mono 1.2.3 from Source

2007-03-22 Thread Jonathan Pryor
On Wed, 2007-03-21 at 10:44 -0400, Brown, Robert wrote: I have a really dumb question… I'm running Debian and have installed mono 1.2.1 from Apt along with xsp and mod-mono. However, I want to use the new features so I ended up building mono 1.2.3 from source and setting the install

Re: [Mono-dev] corlib unit tests failures on .Net

2007-03-22 Thread Sebastien Pouliot
Hello Jonathan, I fixed CryptoConfig unit tests, the names are case insensitive only from Fx 2.0 onward. The other crypto tests also seems to be 1.1 versus 2.0 differences (will fix those asap). Thanks for reporting them. This proves that we need a bot to run the tests under MS.NET/Windows (and

Re: [Mono-dev] Correction to System.Security.Cryptography.Rfc2898DeriveBytes.cs

2007-03-22 Thread Sebastien Pouliot
On Thu, 2007-03-15 at 13:09 -0400, Sebastien Pouliot wrote: On Thu, 2007-03-15 at 09:18 -0700, Roei Erez wrote: Hello, The method 'private byte[] F (byte[] s, int c, int i)' uses BitConverter.GetBytes(int num). This usage is machine dependant, which depends on if the machine works as

Re: [Mono-list] Liststore not appending correctly

2007-03-22 Thread Nil Gradisnik
I see. So if I wrap the whole thing inside Application.Invoke it should work ? Or do I still need to create a new variable inside for loop. Hm.. I wonder how this Application.Invoke effects performance if I use it alot. If I'm making big calculations or long loops inside Application.Invoke ?

[Mono-list] SOAP with attachment ?

2007-03-22 Thread Guillaume Mouron
Hello, I can't find any reliable pieces of info about SOAP with attachment ... Is it handled by Mono ? I've seen that things like MTOM are not yet handled and are part of the (sub)proejct olive but I can't find anything about DIME or MIME attachments. Thanks for your answers Guillaume Mouron

Re: [Mono-list] SOAP with attachment ?

2007-03-22 Thread Guillaume Mouron
Hi, thanks for your quick answer Have a nice day, Guillaume Mouron On 3/22/07, Atsushi Eno [EMAIL PROTECTED] wrote: Hi, It isn't. In .NET it is part of WSE (which is [unlikely | not going to be] supported in Mono) and MTOM support is not done (and not in my plan to do soon, as it is not part

[Mono-list] Exception in Mono

2007-03-22 Thread Anitha
Hi, I'm working in Mono 1.2 version. I'm getting the exception as particular dll cannot be loaded because one of the dependencies are not in the particular path.But I placed all the dll's in the specified path. It is giving the assembly name as assemblyref_index=1. There is no assembly with the

[Mono-list] Calling a dll from ASP.Net under XSP

2007-03-22 Thread Vincent Finn
Hi, I am running mono on windows. I have a simple ASP.Net form with a text box, a label, and a button. When the button is pressed it calls a dll that takes the text from the text box and returns a new string to replace it and the size of the new string is returned as well for debugging

Re: [Mono-list] Liststore not appending correctly

2007-03-22 Thread Alan McGovern
Well if you want a responsive UI you should do no long calculations inside Application.Invoke. For example Application.Invoke(Calculate100DigitsOfPi()) would freeze your UI. Doing your calculations in a worker thread and using App.Invoke to just update the UI would be better. Alan. On

Re: [Mono-list] Exception in Mono

2007-03-22 Thread Will Murnane
On 3/22/07, Anitha [EMAIL PROTECTED] wrote: What is the cause for the exception? What dll file is it? Can you provide example code that triggers the bug? ___ Mono-list maillist - Mono-list@lists.ximian.com

Re: [Mono-list] Liststore not appending correctly

2007-03-22 Thread Nil Gradisnik
Got it. Thanks On 3/22/07, Alan McGovern [EMAIL PROTECTED] wrote: Well if you want a responsive UI you should do no long calculations inside Application.Invoke. For example Application.Invoke(Calculate100DigitsOfPi()) would freeze your UI. Doing your calculations in a worker thread and

[Mono-list] Ignoring NullReferenceExceptions from Mono in gdb

2007-03-22 Thread Chris Seaton
Throwing NullReferenceException is a normal part of the operation of a part of my program, sometimes several thousands will be thrown. I'm debugging Mono in gdb and I'm not interested in seeing each Program received signal SIGBUS, Bus error. and having to manually continue. Can I suppress

[Mono-list] Assembly.LoadFrom and URI

2007-03-22 Thread Buzzby
Is there planned support for Assembly.LoadFrom ( URI ) ? I read some discussion that it perhaps it should wait until CAS is in-place, but nothing definitive. Being new to open-source, i've not figured out how these things get decided. Thanks. -- View this message in context:

Re: [Mono-list] Ignoring NullReferenceExceptions from Mono in gdb

2007-03-22 Thread Chris Seaton
Yeah, I know this. It's actually a testing routine where I run code knowing that it will null reference, but running it will check that Mono can verify the IL. It's not the logic of my program that I'm testing - it's the IL that I've generated. Any solution to my problem with gdb? Chris

Re: [Mono-list] Assembly.LoadFrom and URI

2007-03-22 Thread Sebastien Pouliot
On Thu, 2007-03-22 at 07:52 -0700, Buzzby wrote: Is there planned support for Assembly.LoadFrom ( URI ) ? Nothing immediate. I read some discussion that it perhaps it should wait until CAS is in-place, but nothing definitive. Yes it should (wait for CAS). Now if you don't need CAS

[Mono-list] Installation

2007-03-22 Thread Michael
Running Fedora6, did yum install mono*, seemed to work well. I can compile and run a simple console.writeline(Hello World); However, when I try to compile the helloworld gtk tuturial, the mono system can't find the gtk-sharp package. I'm kinda new to coding in linux so be nice, but where the

Re: [Mono-list] Ignoring NullReferenceExceptions from Mono in gdb

2007-03-22 Thread Paolo Molaro
On 03/22/07 Chris Seaton wrote: Throwing NullReferenceException is a normal part of the operation of a part of my program, sometimes several thousands will be thrown. I'm debugging Mono in gdb and I'm not interested in seeing each Program received signal SIGBUS, Bus error. and having to

Re: [Mono-list] Installation

2007-03-22 Thread Matthijs ter Woord
Have you installed the gtk-sharp package using yum? Michael wrote: Running Fedora6, did yum install mono*, seemed to work well. I can compile and run a simple console.writeline(Hello World); However, when I try to compile the helloworld gtk tuturial, the mono system can't find the

Re: [Mono-list] Installations

2007-03-22 Thread Michel Compercho
Matthijs ter Woord wrote: Have you installed the gtk-sharp package using yum? Michael wrote: Running Fedora6, did yum install mono*, seemed to work well. I can compile and run a simple console.writeline(Hello World); However, when I try to compile the helloworld gtk tuturial, the

Re: [Mono-list] List.FindAll method implementation

2007-03-22 Thread Paolo Molaro
On 03/19/07 Juan C. Olivares wrote: It uses the new algorithm bits-on-stack for System.Collections.Generic.ListT::FindAll (Predicate). This algorithm stores a group of uint's in the stack and uses their bits as flags. Because there's no way to know the size of the stack in any moment in

Re: [Mono-list] Installations

2007-03-22 Thread Martin Trejo
Hi, Are you installing the packages one-by-one? That is, yum install {package} ??? Have you tried to create the mono.repo file in /etc/yum.repos.d? Sounds to me like you're not installing dependencies correctly. 2007/3/22, Michel Compercho [EMAIL PROTECTED]: Matthijs ter Woord wrote:

Re: [Mono-list] Installations

2007-03-22 Thread Andreas Färber
Am 22.03.2007 um 17:30 schrieb Michel Compercho: Have you installed the gtk-sharp package using yum? yes. is there another mechanism I could/should use? Maybe you need to install gtk-sharp2 instead... Andreas ___ Mono-list maillist -

Re: [Mono-list] List.FindAll method implementation

2007-03-22 Thread Juan C. Olivares
Paolo: Thanks for your recommendations. I just followed the comment in the code. These are the tests (attached). best regards Juan C. Olivares using System; using System.Collections.Generic; using System.Runtime.InteropServices; class Test { public static void Main (string [] args) { //

[Mono-list] Gendarme

2007-03-22 Thread Punk Programmer
I'm an ex-.NET/Windows developer who've just installed Mono 1.2 on my Mac OS X. I'd like to take a look at Gendarme, but I'm afraid my tiny brain and lack of experience conspire to hinder me. I've gotten the source from SVN, but running autogen.sh fails with the message that MONO_CECIL is an

Re: [Mono-list] [Gtk-sharp-list] Thread-safe GUI update

2007-03-22 Thread Chris Seaton
You want to use a semaphore. After AppendAvalues you signal. In place of Thread.Sleep you wait on that signal. Something vaguely like Semaphore semaphore = new Semaphore(0, 1); while (Messages.Count 0) { msg = (Message) Messages.Dequeue(); send(msg);

Re: [Mono-list] Gendarme

2007-03-22 Thread Adam Tauno Williams
On Thu, 2007-03-22 at 21:45 +0100, Punk Programmer wrote: I'm an ex-.NET/Windows developer who've just installed Mono 1.2 on my Mac OS X. I'd like to take a look at Gendarme, but I'm afraid my tiny brain and lack of experience conspire to hinder me. I've gotten the source from SVN, but running

Re: [Mono-list] Gendarme

2007-03-22 Thread Punk Programmer
On 3/22/07, Adam Tauno Williams [EMAIL PROTECTED] wrote: On Thu, 2007-03-22 at 21:45 +0100, Punk Programmer wrote: I'm an ex-.NET/Windows developer who've just installed Mono 1.2 on my Mac OS X. I'd like to take a look at Gendarme, but I'm afraid my tiny brain and lack of experience

Re: [Mono-list] Gendarme

2007-03-22 Thread Sebastien Pouliot
Hello Einar, On Thu, 2007-03-22 at 21:45 +0100, Punk Programmer wrote: I'm an ex-.NET/Windows developer who've just installed Mono 1.2 on my Mac OS X. I'd like to take a look at Gendarme, but I'm afraid my tiny brain and lack of experience conspire to hinder me. I've gotten the source from

Re: [Mono-list] Gendarme

2007-03-22 Thread Punk Programmer
On 3/22/07, Sebastien Pouliot [EMAIL PROTECTED] wrote: Hello Einar, On Thu, 2007-03-22 at 21:45 +0100, Punk Programmer wrote: I'm an ex-.NET/Windows developer who've just installed Mono 1.2 on my Mac OS X. I'd like to take a look at Gendarme, but I'm afraid my tiny brain and lack of