[Mono-dev] Howto improve Error-Messages of GDI-Functions?

2007-02-28 Thread latency
I recently ran into a problem where Bitmap.GetPixel(int, int) threw ArgumentException with the Message: Invalid Parameter. A null reference or invalid value was found. As you can image, that does not help at all when debugging your application. Therefore I've made a quick fix which helped me

Re: [Mono-dev] Request for Final Year Project Ideas

2007-02-12 Thread latency
Hello, one thing that keeps going on in my mind is a a Plugin Framework which could provide an easy way to implement a Plugin-Support into Application. This Framework could for example implement an easy to use way to dynamically load and manage plugins and extend control of threads and plugins

Re: [Mono-dev] [PATCH] System.Drawing.RectangleF != Operator Bug

2006-11-07 Thread latency
On Monday 06 November 2006 06:50, Manuel Alejandro Cerón Estrada wrote: Hello, I found a small bug in System.Drawing.RectangleF. The inequality operator (!=) was wrong. Here is the patch that corrects it. Manuel Alejandro Cerón Estrada Hi, I'd like to comment on your patch. In my humble

Re: [Mono-dev] Why Event not actived

2006-09-16 Thread latency
Hi, you are fireing the events in class evento in it's constructur. That way all events will have been fired before the Main-Method reaches e.TerminoBucle += new EventHandlerIniciar2(handler); So the events does not have an consumer and no actions will occure. In generall I don't know how to

Re: [Mono-dev] Mach-o based exception handling

2006-08-26 Thread latency
Hi, I don't know how your Application runs that scripts, but from your short description it seems that all of your user-scripts are being run from the same application domain as the hosting programm. If you try to adopt your programm that those scripts are being run in separate application

Re: [Mono-dev] Bugs in Serialization

2006-08-26 Thread latency
Hi, seems like when trying to deserialize your object, the runtime tried to load an assembly (most likely because the serialized type was unknown for the runtime) and failed. Can you tell if the assembly of the serialized object was already loaded or not? If you don't know how to do this see:

Re: [Mono-dev] System.Transactions

2006-08-20 Thread latency
Hi, this is not really a noteworthy comment but I'd like to say that you've forgotten a trailing = on your Implementation Details heading. As for the implementation of System.Transactions could please someone explain to me how they work. I understand the basic principle but what I don't

Re: [Mono-dev] visual webgui for mono?

2006-07-26 Thread latency
On Tuesday 25 July 2006 23:00, Andrés G. Aragoneses [ knocte ] wrote: Hello. Very interesting thread. latency escribió: It may be a little of topic, but after reading your email I took a closer look on the AjaxOS Demo Video (which was very impressive by the way) and during that some

Re: [Mono-dev] visual webgui for mono?

2006-07-25 Thread latency
It may be a little of topic, but after reading your email I took a closer look on the AjaxOS Demo Video (which was very impressive by the way) and during that some interesting thoughts come up. First of all, I was thinking about the Vision of AjaxOS that all applications will become services

Re: [Mono-dev] ActionT used

2006-07-11 Thread latency
Hi Piotr, if I'm not mistaken you want to enumerate through all the elements in your tree by simple using foreach, but you cant. In that case you may take a closer look at the IEnumerable and IEnumerator Interfaces. Short explanation: If an class is marked as IEnumerable it can be used in a