Re: [Mono-list] Beginner C# Book

2004-08-23 Thread gennady wexler
You might want to check out "Programming C#" by Jesse Liberty, 3rd edition, pub. O'Reilly, ISBN 0-596-00489-3. The 3rd edition has complete coverage of .NET 1.1 and in this edition they added VS.NET 2003, but not too much (50 pages out of 700 something). I would recommend it to anyone. Its a gre

Re: [Mono-list] Problem using p/invoke on mono 1.0.1

2004-08-23 Thread Marcus
I think that the problem has to do with some changes that were made to Mono regarding its handling of strings as return types from P/Invoke method. Behind the scenes, a char* is being returned, and the runtime converts the char* into a System.String. In addition, MS.NET calls CoTaskFree() on the

Re: [Mono-list] Beginner C# Book

2004-08-23 Thread PFJ
Hi, > You might want to check out "Programming C#" by Jesse Liberty, 3rd edition, > pub. O'Reilly, ISBN 0-596-00489-3. > > The 3rd edition has complete coverage of .NET 1.1 and in this edition they > added VS.NET 2003, but not too much (50 pages out of 700 something). > > I would recommend it to

Re: [Mono-list] Beginner C# Book

2004-08-23 Thread George Birbilis
> >>> I'm looking for a good beginner C# book. Preferably one that does not > >>> assume a certain amount of familiarity with C++, Java, or OOP in > >>> general. I picked up "Mono: A Developers Notebook" from O'Reilly > >>> figuring that some of the C++ I saw in school would come back to me. > >>

[Mono-list] Problem with a web serivce method.

2004-08-23 Thread beniniva
Hi, I've a web service example, called Service1.asmx, that contains four methods. The example works well on Windows, but when I try to execute it on Mono I have some problems , particularly when I invoke the "SessioneAttiva" method, I obtain this error: "The remote server returned an error: (500)

Re: [Mono-list] Problem with a web serivce method.

2004-08-23 Thread Jonathan Stowe
On Mon, 2004-08-23 at 13:43, [EMAIL PROTECTED] wrote: > > "The remote server returned an error: (500) Internal Server Error. > Unable to retreive error information from ODBC driver manager" > > What it means? > There is a problem with your ODBC configuration, can you make a small console examp

RE: [Mono-list] Beginner C# Book

2004-08-23 Thread Dan Maltes
Tom, Welcome to the journey that is C# and the .NET framework! I found the book "C# Primer Plus", by Klaus Michelsen, excellent for those new to C# and OOP: http://www.amazon.com/exec/obidos/ASIN/0672321521/qid=1093265707/sr=ka-1/ref =pd_ka_1/104-4273990-8750300 It assumes no prio

[Mono-list] Problem with asp.net web application

2004-08-23 Thread beniniva
Hi, I've an asp.net web application that shows, through an odbc connection to a mysql database, the content of the table chosen from a DropDownList. The code go well on windows but on linux with mono 1.01 not all the tables are shown correctly. Could anybody help me? web application : WebForm1Vi

Re: [Mono-list] Problem with a web serivce method.

2004-08-23 Thread beniniva
Isql is an utility of unixODBC --- [EMAIL PROTECTED] root]# isql tdmio root rootpwd +---+ | Connected!| | | | sql-statement | | help [tablename]

Re: [Mono-list] Problem with a web serivce method.

2004-08-23 Thread Jonathan Stowe
On Mon, 2004-08-23 at 15:08, [EMAIL PROTECTED] wrote: > Isql is an utility of unixODBC > Er yes, but I meant a c# example that run at the console and not a webservice. It will probably be enough to do just: using System; using System.Data; class Foo { public static void Main() {

[Mono-list] about Convert class

2004-08-23 Thread lamyae Benabdeljalil
I am using mono 1.0, and i have a problem with a lethod of the System.Convert class. My statement is : Hashkey=System.Convert.FromBase64String(dr.GetValue(0).ToString()); i get the following error: Unhandled Exception: System.IndexOutOfRangeException: Array index is out of range. in <0x00098> Syste

RE: [Mono-list] about Convert class

2004-08-23 Thread Sébastien Pouliot
Please fill a bugzilla (http://bugzilla.ximian.com) entry and include the value of dr.GetValue(0).ToString() in it. Sebastien Pouliot home: [EMAIL PROTECTED] blog: http://pages.infinit.net/ctech/poupou.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of la

[Mono-list] Mono 1.0.1 late release notes.

2004-08-23 Thread Miguel de Icaza
Hello,    These are the Mono 1.0.1 Late Release Notes. Miguel.Mono 1.0.1 Release Notes For detailed information about Mono, please see the Mono 1.0 release notes. Mono 1.0.1 is a maintenance release release for the 1.0 series of the Mono runtime. The Mono 1.0.xx series is the edition of sta

[Mono-list] System.Convert.FromBase64String

2004-08-23 Thread lamyae Benabdeljalil
does the method System.Convert.FromBase64String work with mono? Do you have any idea? ___ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] tutorial proxy

2004-08-23 Thread Gearoid Donnellan
I recently did the tutorial on the go-mono website for c# and gtk#, the browser, but I can get the webpage to open up. I am behind a proxy so I think thats part of the problem. Is there anyway I can tell the program to use a proxy? I looked through the Gecko docs and didnt see anything. I've attac

Re: [Mono-list] about Convert class

2004-08-23 Thread David Waite
This sure looks like you are having an IndexOutOfBoundsException on dr.GetValue(0), and not the Convert. On Mon, 23 Aug 2004 15:12:49 +, lamyae Benabdeljalil <[EMAIL PROTECTED]> wrote: > I am using mono 1.0, and i have a problem with a lethod of the > System.Convert class. My statement is : >

RE: [Mono-list] about Convert class

2004-08-23 Thread T Sureshkumar
please also include minimal simple program code to reproduce the error. thanks suresh. >>> Sébastien Pouliot <[EMAIL PROTECTED]> 8/23/2004 9:01:09 PM >>> Please fill a bugzilla (http://bugzilla.ximian.com) entry and include the value of dr.GetValue(0).ToString() in it. Sebastien Pouliot home: