[Mono-dev] Gtk# 2.8.4 runtime for windows?

2008-04-16 Thread Vladimir Dimitrov
Hey guys I have been running In some deadlock lately using the different versions of GTK# that are available around here. In GTK 2.10 there is cool feature (Glib.ExceptionManager.UnhandledException) that enables you to subscribe to that event and handle any unhandled exceptions your application

Re: [Mono-dev] Gtk# 2.8.4 runtime for windows?

2008-04-16 Thread Alan McGovern
Hi, You can work around it by using reflection to test whether that event exists, and if it does you can then register a handler to it. That way you can use the new feature without having to lose compatibility with 2.8. Alan. 2008/4/16 Vladimir Dimitrov [EMAIL PROTECTED]: Hey guys I have

Re: [Mono-dev] Gtk# 2.8.4 runtime for windows?

2008-04-16 Thread Michael Hutchinson
On Wed, Apr 16, 2008 at 5:39 PM, Alan McGovern [EMAIL PROTECTED] wrote: Hi, You can work around it by using reflection to test whether that event exists, and if it does you can then register a handler to it. That way you can use the new feature without having to lose compatibility with

Re: [Mono-dev] Gtk# 2.8.4 runtime for windows?

2008-04-16 Thread Vladimir Dimitrov
Wow I just wrote that piece of code and started testing :). Thanks guys. -Original Message- From: Michael Hutchinson [mailto:[EMAIL PROTECTED] Sent: Thursday, April 17, 2008 1:53 AM To: Alan McGovern Cc: Vladimir Dimitrov; Mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Gtk