Re: [Mono-docs-list] Updating class library docs

2004-03-04 Thread Joshua Tauberer
Hector E. Gomez Morales wrote: Sorry If I was grumpy but I thank you for you work and time spent, but that is peer review is all about, I think :). I didn't mind. :) One question again, I like very much some parts of your program but I like some things too from update.exe can I borrow some code

RE: [Mono-list] Simple code - differences in output between mono .Net

2004-03-04 Thread Iain McCoy
On Thu, 2004-03-04 at 03:13, Jonathan Stowe wrote: StreamReader mtab = new StreamReader(/etc/mtab); ArrayList stuff = new ArrayList(); string[] fields; while ( (line = mtab.ReadLine()) != null ) { fields = line.Split(new

RE: [Mono-list] Simple code - differences in output between mono .Net

2004-03-04 Thread Jonathan Stowe
On Thu, 2004-03-04 at 09:39, Iain McCoy wrote: On Thu, 2004-03-04 at 03:13, Jonathan Stowe wrote: StreamReader mtab = new StreamReader(/etc/mtab); ArrayList stuff = new ArrayList(); string[] fields; while ( (line = mtab.ReadLine()) != null )

RE: [Mono-list] Simple code - differences in output between mono .Net

2004-03-04 Thread jonathan.cooper
this could be useful for writing [..] a disk management tool in C#. Which was precisely my intention as a first big mono/GTK# app ;) -Original Message- From: Jonathan Stowe [mailto:[EMAIL PROTECTED] Sent: 04 March 2004 09:51 To: Iain McCoy Cc: COOPER, Jonathan -Syntegra UK; [EMAIL

[Mono-list] Mono mini-meeting in Boston: March 5th and 6th

2004-03-04 Thread Francisco T. Martinez
Good Morning: As of a few minutes ago, I followed the link http://www.ximian.com/about_us/contact/ and was redirected to: http://www.novell.com/company/contact.html. It was not clear if I could obtain the physical address to Ximian offices in Cambridge from the ridericted page. Just in

[Mono-list] [ANN] Firebird .NET Data Provider 1.6 Alpha1 released

2004-03-04 Thread Carlos Guzmán Álvarez
Hello: Firebird .NET Data Provider 1.6 Alpha 1 available for download. Changes in this release (Review the changelog for details): Alpha 1 ( 2004-02-04 ) - - - -- -- - - Initial support for the Firebird Embedded server. - Improved Connection Pooling implementation, now there will be

[Mono-list] Re: win32 vs linux override discrepancy

2004-03-04 Thread felipe maya
I'm wotking with mono-0.30.2 on Linux, I'm trying to connect to MySql database with ByteFX. On Linux is very slow and return TIMED OUT. On Windows (0.30) is slow to but the connection SUCCESS. When the compilation on Win32 with .NET is success, the execution of the program without MONO, the

[Mono-list] ManagedGL 0.1.1

2004-03-04 Thread Sijmen Mulder
Hi all! I am working on a game library for .NET which should be completely cross-platform. The development platform is Linux with mono. I got a first version up and running, which can provide some basic graphics functionality. It is available from

[Mono-list] Accessing member objects in destructors

2004-03-04 Thread Gustavo García Bernardo
Hi, Reading the Mono code i have seen sometimes a class destructor access a method of a member object: Socket socket = new Socket(); ~ { socket.Close (); } Is this correct? You can assert the socket object is not freed before XXX object? Thx, best regards. G.

Re: [Mono-list] Running Mono on Mac OS X Write up

2004-03-04 Thread Erik Dasque
Hi Griffin, very interesting write-up. I have a few questions : 1) Do you want to submit that for inclusion in the mono documentation ? We could use a MacOS HOWTO. 2) You chose not to include the boehm gc. I think we need that on MacOS X. 3) Have you tried to build GTK# on MacOS ? I am having

RE: [Mono-list] Accessing member objects in destructors

2004-03-04 Thread Grundgeiger, Dave
From Overriding the Finalize Method in the .NET Framework SDK documentation: An object's Finalize method should not call a method on any objects other than that of its base class. This is because the other objects being called could be collected at the same time as the calling object, such as in

Re: [Mono-list] Running Mono on Mac OS X Write up

2004-03-04 Thread Griffin Caprio
On Thursday, March 04, 2004, at 11:28AM, Erik Dasque [EMAIL PROTECTED] wrote: Hi Griffin, very interesting write-up. I have a few questions : 1) Do you want to submit that for inclusion in the mono documentation ? We could use a MacOS HOWTO. Sure. Does a MacOS HOWTO exist yet? 2) You

Re: [Mono-list] Running Mono on Mac OS X Write up

2004-03-04 Thread Erik Dasque
1) Do you want to submit that for inclusion in the mono documentation ? We could use a MacOS HOWTO. Sure. Does a MacOS HOWTO exist yet? Not as such, I don't believe. Haven't tried yet. Most of my work deals in the core ( mono mac ), but I will look into it. Yes, getting bonobo-activation2

Re: [Mono-list] Weird Exception in mod_mono

2004-03-04 Thread Gonzalo Paniagua Javier
El mié, 03-03-2004 a las 12:33, Jonathan Stowe escribió: I am getting this and I can't find any reports in the list or elsewhere of anything quite the same: System.InvalidOperationException: Process has not been started. in 0x00065 System.Diagnostics.Process:get_ExitCode () in 0x00050

RE: [Mono-list] Accessing member objects in destructors

2004-03-04 Thread Uppenborn, Jason
Hi Gustavo Did you mean object destructor or did you really mean a class destructor? For a *class* destructor, I would say that accessing methods of member objects would be correct because, AFAIK, as there isn't any other point at which the class is told to release it's resources. For an

[Mono-list] Missing classes in gtk-sharp

2004-03-04 Thread Giuseppe Greco
Hi all, I've just checked out the latest mono stuff from CVS and I'm not able to build monodoc because the following classes are missing in gtk-sharp: UrlRequestedArgs LinkClickedArgs OnUrlArgs Any idea? j3d. -- Giuseppe Greco ::agamura:: phone: +41

[Mono-list] monoDevelop (how do i get a beta copy) ?

2004-03-04 Thread ted leslie
I really need to start into monoDevelop. I am developing some web sites with mono and my employees are ok using MS visual .Net shit, but i have been using Linux on the desktop for 2+ years now and I can't go back to touching a Windows box (for obvious reasons). So i would love to try monoDevelop

[Mono-list] Repeaters

2004-03-04 Thread Simon Cunningham
This is my first post to this mailing list, so please tell me if this in not the most appropriate place to ask this question. I have scoured the net for information regarding this problem, but have come up empty. Maybe somebody here has some insight into this problem. I have some C# code that

Re: [Mono-list] monoDevelop (how do i get a beta copy) ?

2004-03-04 Thread Richard Torkar
On Thu, 2004-03-04 at 21:47, ted leslie wrote: I really need to start into monoDevelop. I am developing some web sites with mono and my employees are ok using MS visual .Net shit, but i have been using Linux on the desktop for 2+ years now and I can't go back to touching a Windows box (for

Re: [Mono-list] Simple code - differences in output between mono .Net

2004-03-04 Thread Tim Haynes
David Sheldon [EMAIL PROTECTED] writes: On Wed, Mar 03, 2004 at 10:11:28AM -0500, Nick Berardi wrote: I guess logical drives in Linux is just the root. But I would think that they would include the mount points in here? Don't you think? Because basically that is all that a Windows Drive

[Mono-list] Problem with XSP

2004-03-04 Thread Siddhartha Upadhyaya
Sir, My name is Siddhartha Upadhyaya. I want to create an environment for ASP.Net in Linux environment. For this I am using the tools provided by mono. I successfully build the c# compiler, which successfully working with "Hello World" and as well as some database operation (Postgresql Npgsql

Re: [good] Re: [Mono-list] monoDevelop (how do i get a beta copy) ?

2004-03-04 Thread ted leslie
Great but ... for deps i might be stuck on not having cvs to get gtksourceview-sharp.. is it available anywhere for a quick download? (sorry down know about Red Carpet or their channels). From README on monoDev ... gtksourceview = 0.7 gtksourceview-sharp from mono's cvs (gtksourceview is

Re: [good] Re: [Mono-list] monoDevelop (how do i get a beta copy) ?

2004-03-04 Thread Richard Torkar
On Thu, 2004-03-04 at 22:23, ted leslie wrote: Great but ... for deps i might be stuck on not having cvs to get gtksourceview-sharp.. is it available anywhere for a quick download? (sorry down know about Red Carpet or their channels). From README on monoDev ... gtksourceview =

[Mono-list] Debugger problem

2004-03-04 Thread David Mitchell
I'm trying to run some code through the debugger but I'm having trouble setting breakpoints. I can set a breakpoint using: break Sandbox.cs : 6 But this is on a very simple project. When I try breaking on a file in the XSP project (specifically XSPApplicationHost.cs:303) I get this error: $

RE: [Mono-list] Accessing member objects in destructors

2004-03-04 Thread Jonathan Pryor
Below... On Thu, 2004-03-04 at 15:01, Uppenborn, Jason wrote: snip/ For a *class* destructor, I would say that accessing methods of member objects would be correct because, AFAIK, as there isn't any other point at which the class is told to release it's resources. What, pray tell, is a class

RE: [Mono-list] Problem with XSP

2004-03-04 Thread Cory Nelson
The socket file is changed back every time xsp is started, maybe that is your problem. WhatI do is start XSP with sudo and have it run under apache's user/group. Solves those problems nicely and doesn't make you chmod a potentially important file 777 :) Another thing are you sure you setup

Re: [Mono-list] Running Mono on Mac OS X Write up

2004-03-04 Thread Griffin Caprio
On Mar 4, 2004, at 1:13 PM, Erik Dasque wrote: 1) Do you want to submit that for inclusion in the mono documentation ? We could use a MacOS HOWTO. Sure. Does a MacOS HOWTO exist yet? Not as such, I don't believe. Should we start one up? I have no problem maintaining one. Haven't tried yet.

[Mono-list] libmySQL-Dll not found exception

2004-03-04 Thread roopa
I installed mySQL using the MySql rpms (v 4.0.18.0). I tried executing the TestMySqlExecuteReader.cs program in /mcs/class/Mono.Data.MySql/Test and got the following exception: Unhandled Exception: System.DllNotFoundException: libmySQL in 0x0005c (wrapper managed-to-native)