[Mono-dev] I finished my employement at Mainsoft

2006-12-04 Thread Andrew Skiba
Hello. I finished my duties at Mainsoft, and started to work for Liveperson. So probably I will be less visible in the nearest future, and I want to thank all of you who worked with me. I enjoyed participating in Mono very much, and I had luck to work with outstanding people. Special thanks to

Re: [Mono-dev] I finished my employement at Mainsoft

2006-12-04 Thread Atsushi Eno
Hi, Andrew Skiba wrote: I finished my duties at Mainsoft, and started to work for Liveperson. So probably I will be less visible in the nearest future, and I want to thank all of you who worked with me. I enjoyed participating in Mono very much, and I had luck to work with outstanding people.

[Mono-dev] Remoting RealProxy issue

2006-12-04 Thread Carlos Ble
Hi! I have a problem with mcs/class/corlib/System.Runtime.Remoting.Proxies/RealProxy.cs, line 202: // todo: remove throw exception from the runtime invoke if (null != exc) { out_args = null; throw exc.FixRemotingException(); } Well, I am using the MonoRail tests engine but it

Re: [Mono-dev] Remoting RealProxy issue

2006-12-04 Thread Lluis Sanchez
Hi, I don't understand what is the problem. An exception will be thrown only if the remote call returned an exception. El dl 04 de 12 del 2006 a les 01:41 +, en/na Carlos Ble va escriure: Hi! I have a problem with mcs/class/corlib/System.Runtime.Remoting.Proxies/RealProxy.cs, line 202:

Re: [Mono-dev] Remoting RealProxy issue

2006-12-04 Thread Carlos Ble
Well, I need to find who is firing the exception. At the moment I only know that the tests engine works on .Net but throws that exception on Mono. Thanks El lun, 04-12-2006 a las 12:10 +0100, Lluis Sanchez escribió: Hi, I don't understand what is the problem. An exception will be thrown only

[Mono-dev] SystemIcons.Exclamation produces an exception.

2006-12-04 Thread caz yokoyama
Has anyone ever used SystemIcons.Exclamation? It produces an exception while it works on Windows. Is this a bug or am I missing something? icon.cs -- using System; using System.Drawing; using System.Collections; using System.Drawing.Imaging; using

[Mono-dev] System Icon For a File

2006-12-04 Thread Luciano Callero
Hi, sorry if this isn't the correct List. The question, is: I'm developing an application with MonoDevelop, with GTK. The question: I need to obtain the icon for a file. If it is a *tar* or pdf file (example) i need to obtain the icon that gnome gave to this file, and then assign it to a

Re: [Mono-dev] I finished my employement at Mainsoft

2006-12-04 Thread Martin Hinks
Hi, Congratulations on the job - any chance you could fix the bugs with Liveperson's java in firefox - it screws up typing text anywhere else! Many thanks and good luck, Martin On 12/4/06, Atsushi Eno [EMAIL PROTECTED] wrote: Hi, Andrew Skiba wrote: I finished my duties at Mainsoft, and

Re: [Mono-dev] COM Callable Wrapper Patch

2006-12-04 Thread Paolo Molaro
On 12/01/06 Jon Chambers wrote: Index: mono/mono/metadata/loader.c === --- mono/mono/metadata/loader.c (revision 68741) +++ mono/mono/metadata/loader.c (working copy) @@ -1377,7 +1377,7 @@ !(cols [1]

Re: [Mono-dev] Fixes for System.Net.Mail

2006-12-04 Thread Paolo Molaro
On 12/03/06 David Elkin wrote: I am new to this list. My name is David Elkind and I am part of Mainsoft team. Welcome:) Please review my change to the System.Net.Mail classes and related configurationi classes from System.Net.Configuration. Index:

Re: [Mono-dev] Fixes for System.Net.Mail

2006-12-04 Thread Miguel de Icaza
Hello, Question: is the SWF good enough to be put into System.dll and be invoked from System.Web, SWF and for this mail class? If we are going down the path of mapping file names to mime types, we should instead use a switch statement that will consume no memory for the large majority of

Re: [Mono-dev] Error handling for embedded Mono

2006-12-04 Thread Paolo Molaro
On 12/01/06 [EMAIL PROTECTED] wrote: I had a look at making some changes to remove some of these calls but ran into some problems. For example mono_init_internal calls exit (line 586 of domain.c) but by that point the domain has been allocated and a lot of things have been initialized. So my

Re: [Mono-dev] Using MoMA on mono

2006-12-04 Thread Paolo Molaro
On 11/30/06 Leszek Ciesielski wrote: Second - MoMA has a wierd way of handling the file chooser. It attempted to load .wine directory as a file, instead of browsing Was it a symlink? Anyway, please file appropriate bug reports for all the issues you found. Thanks. lupus --

Re: [Mono-dev] DateTime/DateTimeFormatInfo patch to reduce Clone()

2006-12-04 Thread Paolo Molaro
On 11/30/06 Atsushi Eno wrote: I noticed that many string[] properties in DateTimeFormatInfo are used directly in DateTime. They have to return Clone() which are not neccessary there. If the arrays are exposed to the user, we should clone them, otherwise the user can change the values in the

Re: [Mono-dev] DataTable Select string comparison patch

2006-12-04 Thread Jarosław Pawlak
Hello, Konstantin 1. If one object is string = 5 and the second object is Int32 = 5. Will the objects be equal? No, they won't even go into the if because o1 is string, but o2 is not string 2. What if a case insensitive comparison should be done, but the objects are not strings? (May be

Re: [Mono-dev] DataTable Select string comparison patch

2006-12-04 Thread Konstantin Triger
Title: RE: [Mono-dev] DataTable Select string comparison patch Hi Jaroslaw, 1. If one object is string = 5 and the second object is Int32 = 5. Will the objects be equal? No, they won't even go into the if because o1 is string, but o2 is not string That's right, but the question is what