[Mono-list] mod_mono on RH 9

2008-02-12 Thread Bryan Buchanan
Hi, I've got a customer using RH 9 and I wanted to get mod_mono working. I used the mono 1.2.1 installer (get same error with 1.2.4). Mono works fine. I've compiled Apache 2.2 from source and it too works fine, except that when it starts, mod_mono doesn't, probably because of this error:

[Mono-list] mod_mono on RH 9

2008-02-07 Thread Bryan Buchanan
Hi, I've got a customer using RH 9 and I wanted to get mod_mono working. I used the mono 1.2.1 installer (get same error with 1.2.4). Mono works fine. I've compiled Apache 2.2 from source and it too works fine, except that when it starts, mod_mono doesn't, probably because of this error:

[Mono-list] Gecko.WebControl

2007-02-05 Thread Bryan Buchanan
Hi, I'm having trouble getting this control to work in OpenSuse 10.2 I've used the example from here: http://www.go-mono.com/docs/index.aspx?link=T%3AGecko.WebControl I've loaded the generic Mono installer mono-1.2.2.1_1-installer.bin, and have also tried loading all the Mono RPMs via Yast.

[Mono-list] Gdk.Pixbuf error in Mono

2006-09-24 Thread Bryan Buchanan
Hi, Futher to a previous message I sent to the list, I downloaded the latest GTK source: glib-2.8.6 atk-1.10.3 gtk+-2.8.20 pango-1.10.4 and the latest Mono, mono-1.1.17.1_2 A simple test program and output follows. I've tried all the combinations of stuff I can, and always get the same error.

[Mono-list] Gdk.Pixbuf error using xsp

2006-09-22 Thread Bryan Buchanan
Hi, My Mono app barfs a this line of code: Gdk.Pixbuf pixbuf = new Gdk.Pixbuf(filename); This is on an OpenSuse 10.1 system, running xsp. I've downloaded the Mono 1.1.16.1 installer and I get the same error. Interestingly, exactly the same code using Mono 1.1.16.1 on an Ubuntu 6.06.1 system

[Mono-list] gtk installer

2006-07-14 Thread Bryan Buchanan
Hi, There appear to be no files here http://forge.novell.com/modules/xfmod/project/?gtks-inst4win Have they moved or is this no longer available. Thanks, Bryan ___ Mono-list maillist - Mono-list@lists.ximian.com

[Mono-list] ASP Server.Transfer error

2006-05-25 Thread Bryan Buchanan
Hi, I'm trying to run the code from MS's web site on the topic Passing Server Control Values Between Pages. When I click on the Go to second page button, the runtime barfs with an error System.InvalidCastException: Cannot cast from source type to destination type. I'm assuming it's the line of

Re: [Mono-list] Monolaunch

2005-10-17 Thread Bryan Buchanan
On Mon, 2005-10-17 at 04:45 -0500, Francisco T. Martinez wrote: On Mono Combined installers prior to version 1.1.9.1 the mono.exe used to reside in the \lib directory. MonoLaunch was written with that assumption. You could copy the mono.exe file to the lib directory (I suggest copy not

[Mono-list] Monolaunch

2005-10-16 Thread Bryan Buchanan
Hi, I had Monolaunch working with Mono-1.1.8.3, and now I've updated to 1.1.9.2, Monolaunch gives me a message saying it cannot find the Mono CLR. 1.1.9.2 seems to be loaded OK. I can get a Mono command prompt and do stuff. Is there some setting I need to update ? Thanks, Bryan

[Mono-list] Printing with Mono

2005-10-03 Thread Bryan Buchanan
Hi, Can anyone give me advice on the preferred means of printing with Mono. I think f-spot uses GnomePrint. I've used the itextsharp library to create PDF. Cairo looks like it could be the best bet, but both Postscript and PDF are in development so it's not ready for prime time. I rarely used

[Mono-list] Re: Little glade xml to .cs stub generator

2005-05-31 Thread Bryan Buchanan
On Wed, 2005-06-01 at 10:32, [EMAIL PROTECTED] wrote: Rafael, Great little tool. Very useful. Thanks for making it available. Bryan From: Rafael Ferreira [EMAIL PROTECTED] Of course, this works for me (tm), your mileage may vary... and please email me any questions/comments. - Rafael

[Mono-list] Re: [Bpd] Re: a start at the arm app

2005-04-26 Thread Bryan Buchanan
Sorry, try this attachment. // // class definitions for CRM app // using System; using System.Collections; using System.Collections.Specialized; using System.Text; using Gtk; using com.db4o; using com.db4o.ext; using com.db4o.query; namespace wEbbTide { // // statuses for calls

[Mono-list] C - C# strings

2004-12-12 Thread Bryan Buchanan
Hi, Can some please tell me why I cannot return 8 bit strings from C to C#. Using this example: #include gnome.h $ cat bjb.c gchar *test(void) { gchar *y = g_strconcat(xxx, \xFE, yyy, NULL); return y; } $ cat bjb.cs using System; using System.Runtime.InteropServices;