Re: [Mono-list] Mono chosen as Development Application of the Year.

2005-01-04 Thread Sijmen Mulder
Wow, > Mono was chosen by Ars Technica on the Linux category as `Development > Application of the Year'. Thanks to everyone that made this happen! That is great, keep up the good work! -- Sijmen Mulder ___ Mono-list maillist - Mono-list@lists.x

[Mono-list] RE: Support for .NET/COM interoperability

2005-01-04 Thread Robik, Scott
Erik, If I understand your response correctly, in order to access COM calculators that I currently have, I would also need to be running the COM runtime on the UNIX host. If this is true then it sound like my only option would be to port the calculators to UNIX. I was looking to use MONO as a c

[Mono-list] Problemas con dependencias! ayuda

2005-01-04 Thread Maikol Mejias Retana
Hola Señores del proyecto Mono, estoy tratando de instalar Mono 1.0.5 en mi maquina con SuSe Linux 9.0, pero tengo algunos problemas con algunas dependencias: Al instalarlo me pide: pkgconfig. apache2 libgal-2.0.so.6 libgnomeprint-2-2.so.0 libgnomeprintui-2-2.so.0 libgal-a11y-2.0.so.6 ya cons

RE: [Mono-list] Mono chosen as Development Application of the Year.

2005-01-04 Thread Martin Hansen
You forgot the source of the quotation, here it is: http://arstechnica.com/columns/linux/linux-20050102.ars/2 keep up the good work ;o) -- Med venlig hilsen/regards Martin Hansen Software Specialist Center for Software Innovation Stenager 2 DK-6400 Sønderborg Tlf: +45 7347 7017 Fax: +45 7347 70

AW: [Mono-list] Domain.c

2005-01-04 Thread Jochen Wezel (CompuMaster GmbH)
Hi Sebastien, What can I do more than following? There was no error anywhere... wget mono-1.1.3.20050103.tar.gz cd mono-1.1.3.20050103 ./configure --prefix=/usr make make uninstall make install Thanks Jochen -Ursprüngliche Nachricht- Von: Sébastien Pouliot [mailto:[EMAIL PROTECTED] Ges

Re: [Mono-list] RE: Support for .NET/COM interoperability

2005-01-04 Thread Jonathan Pryor
On Mon, 2005-01-03 at 16:54 +, Robik, Scott wrote: > If I understand your response correctly, in order to access COM > calculators that I currently have, I would also need to be running the > COM runtime on the UNIX host. Maybe. See below. > If this is true then it sound like my only option

Re: [Mono-list] Support for Marshal.PtrToStructure in mono?

2005-01-04 Thread Kala B
Hi, mono supports Marshal.PtrToStructure when the structure has a char[] with Charset = Unicode, but does not support a string!! For example, the following works perfectly fine in mono without throwing any errors. [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] public class Id

Re: [Mono-list] RE: Support for .NET/COM interoperability

2005-01-04 Thread Erik Dasque
On Jan 4, 2005, at 7:16 AM, Jonathan Pryor wrote: There is an alternate approach, though: Leave your COM code on Windows, and write a .NET front-end which uses .NET COM Interop to use your COM objects. The front-end could be an XML Web Service or a System.Runtime.Remoting server, both of which Mo

Re: [Mono-list] Mono chosen as Development Application of the Year.

2005-01-04 Thread Amish Munshi
Miguel de Icaza wrote: Hey folks, Mono was chosen by Ars Technica on the Linux category as `Development Application of the Year'. Thanks to everyone that made this happen! Mono has done great progress, Congrats for the success. Future does appear very bright for Mono, its requirements are

[Mono-list] Problem with Dispose() and unmanaged resources

2005-01-04 Thread Edd Dumbill
Hi, In Redland# we use the pattern described by Microsoft for using IDisposable to wrap unmanaged resources, described here: http://makeashorterlink.com/?Y3861282A I have a private member of type IntPtr set to the unmanaged resource, and a P/Invoke to a cleanup C function is made in the Dispose c

Re: [Mono-list] Problemas con dependencias! ayuda

2005-01-04 Thread Mauro Parra Miranda
Hola, On Mon, 2005-01-03 at 13:53 -0600, Maikol Mejias Retana wrote: > ya consegui apache2 pero los otros paquete no los eh podido encontrar en la > red! y ya llevo varios dias de intentar encontrarlo, quiciera saber, si > conocen de alguna direccion de donde los pueda descargar, > o si los t

Re: [Mono-list] Problem with Dispose() and unmanaged resources

2005-01-04 Thread Matthijs ter Woord (meddochat)
Hi Edd, Please check out the GC.SuppressFinalize function. Matthijs ter Woord - Original Message - From: "Edd Dumbill" <[EMAIL PROTECTED]> To: Sent: Tuesday, January 04, 2005 5:42 PM Subject: [Mono-list] Problem with Dispose() and unmanaged resources > Hi, > > In Redland# we use t

Re: [Mono-list] Problem with Dispose() and unmanaged resources

2005-01-04 Thread Edd Dumbill
On Tue, 2005-01-04 at 19:12 +0100, Matthijs ter Woord (meddochat) wrote: > Hi Edd, > > Please check out the GC.SuppressFinalize function. I was already using this as described in the MSDN documentation. On IRC jonp helpfully pointed out that the missing piece may have been that Mono generates a

Re: [Mono-list] Problemas con dependencias! ayuda

2005-01-04 Thread Mario Carrión
On Tue, 2005-01-04 at 12:12 -0600, Mauro Parra Miranda wrote: > Hola, > > On Mon, 2005-01-03 at 13:53 -0600, Maikol Mejias Retana wrote: > > > ya consegui apache2 pero los otros paquete no los eh podido encontrar en la > > red! y ya llevo varios dias de intentar encontrarlo, quiciera saber, si

[Mono-list] eventbox array

2005-01-04 Thread roy
I have used eventbox to park a image . but I need many eventbox and image. when I click the eventbox, how can I know which eventbox I have clicked. it seems I can not use eventbox array. when I use following code, it cause error. static EventBox[] eventboxm; eventboxm[0]=new EventBox(); thanks

[Mono-list] popup a menu

2005-01-04 Thread roy
Anybody can give me a example about popup a menu by using contextmenu. thank you very much Roy

Re: [Mono-list] eventbox array

2005-01-04 Thread Paul
On Wed, 2005-01-05 at 12:41 +1100, roy wrote: > I have used eventbox to park a image . but I need many eventbox and image. > when I click the eventbox, how can I know which eventbox I have clicked. it > seems I can not use eventbox array. > when I use following code, it cause error. > static EventB

Re: [Mono-list] popup a menu

2005-01-04 Thread Paul
Hi > Anybody can give me a example about popup a menu by using > contextmenu. This really should be on the mono-devel list... protected void contextMenu1_Popup(System.Object sender, System.EventArgs e) { // Clear the contents of the context menu. contextMenu1.MenuItems.Clear(); // Add a men

Re: [Mono-list] Support for Marshal.PtrToStructure in mono?

2005-01-04 Thread Jonathan Pryor
On Tue, 2005-01-04 at 13:48 +, Kala B wrote: > Hi, > mono supports Marshal.PtrToStructure when the > structure has a char[] with Charset = Unicode, but > does not support a string!! > Is there any specific reason/ major difference for > mono supporting char[] with Marshal.PtrToStructure an