[Mono-dev] Reading and writing excel files

2006-02-01 Thread ZABALA CALVO, IÑAKI
I am trying to read and write Excel .xls files I have tried it with COM: using System; using Microsoft.Office.Interop.Excel; public class ExcelDemo { public static void Main () { Microsoft.Office.Interop.Excel.Application app = new Microsoft.Office.Interop.Excel.Application();

[Mono-dev] Simple client/server database

2006-02-01 Thread ZABALA CALVO, IÑAKI
Hello Do you know a simple client/server database supported by mono but without administration rights. I have tried Postgre, but it does not let me run the client and the server with the same user. Thank you tabletd width=650 align=leftbrbrbrbrbrbrbrbrfont color=red

[Mono-dev] serialization problem

2006-02-01 Thread Ivano Luberti
Hi, I'm sorry to bore the list with a bunch of message but after using mono for 2 month with little problems now I think I have hit a serious (at least for me) bug. Before submitting it I want to ask to developers. Im consuming a web service. Calling one of its method using the .NET framework

Re: [Mono-dev] Building Mono on Linux/Alpha

2006-02-01 Thread Zoltan Varga
Hi, mono_arch_allocate_vars () is used to determine the location where each variable is stored, i.e. in a global register (OP_REGVAR), or on the stack (OP_REGOFFSET). You can reserve a register by preventing the JIT from allocating other stuff to it,

Re: [Mono-dev] Reading and writing excel files

2006-02-01 Thread Jonathan Pryor
On Tue, 2006-01-31 at 10:24 +0100, ZABALA CALVO, IÑAKI wrote: I am trying to read and write Excel .xls files I have tried it with COM: Mono does not currently support COM interop, though Jonathan Chambers is attempting such functionality... If you want to write Excel files, you'll either need

Re: [Mono-dev] Reading and writing excel files

2006-02-01 Thread Ilya Kharmatsky
You can also use this Java library : http://www.andykhan.com/jexcelapi/ Jonathan Pryor wrote: On Tue, 2006-01-31 at 10:24 +0100, "ZABALA CALVO, IÑAKI" wrote: I am trying to read and write Excel .xls files I have tried it with COM: Mono does not currently support COM

Re: [Mono-dev] serialization problem

2006-02-01 Thread Lluis Sanchez
You need to help us help you. You can do it by: * Filing a bug report in bugzilla.ximian.com * Attaching a test app we can use to reproduce the issue. Thanks, Lluis. El mié, 01-02-2006 a las 10:32 +0100, Ivano Luberti escribió: Hi, I'm sorry to bore the list with a bunch of message but after

[Mono-dev] Parse methods

2006-02-01 Thread Mayur Devendra Punekar
Hello, - I am tring to covert string to float and double with the help of float.Parse and Double.Parse method, but its not returning proper values, e.g string s = 1.0; double d = Double.Parse(s); this codes gives d = 10 !! (i.e. without decimal point) - Can any one point out the problem

Re: [Mono-dev] Parse methods

2006-02-01 Thread Zoltan Varga
Hey, It returns '1' here. Please attach a complete testcase. ZoltanOn 1 Feb 2006 14:59:05 -, Mayur Devendra Punekar [EMAIL PROTECTED] wrote: Hello, - I am tring to covert string to float and double with the help of float.Parse and Double.Parse method, but its not returning proper values,

[Mono-dev] Parse methods

2006-02-01 Thread Mayur Devendra Punekar
hi Zoltan, here is my test case public class Test{ public static void Main(string[] argv){ double d; string s = 5.4 ; d = Double.Parse(s); System.Console.WriteLine(d); } } output: 54 - I m suing Mono 1.1.10 with Debian machine

Re: [Mono-dev] Parse methods

2006-02-01 Thread Kamil Skalski
Maybe it is related to locale? In some languages, like mine, '.' is used as tousand mark and ',' as decimal separator.Maybe in your locale it is also parsed this way somehow? Try 1,1 1 Feb 2006 15:13:29 -, Mayur Devendra Punekar [EMAIL PROTECTED]: hi Zoltan, here is my test case public

[Mono-dev] [PATCH] Map SocketFlags enum to native flags

2006-02-01 Thread Ankit Jain
Hi, The icalls for System.Net.Sockets.Receive_internal, ..Send_internal etc, ignore any socket flags (like SocketFlags.Peek). The attached patch fixes that. The patch adds an enum MonoSocketFlags in mono/metadata/socket-io.h since it contains other similar enums. But this means that a

[Mono-dev] Mono 1.1.13.2: Invalid handle to path

2006-02-01 Thread Jeremy Blawn
After playing around with this for too many hours, I think I have narrowed it down to File not being thread-safe. File.Exists() fails allbeit there is only 1 active thread in the application when this happens. "IOException: Invalid handle to path" is thrown after the File.Exists() is called

[Mono-dev] proper way to upgrade mono installation?

2006-02-01 Thread Jonathan Resnick
Hi all, I've been working with Mono on Windows for a while, and now I'm transitioning to Linux. I'm fairly new to Linux though. I recently installed Suse 10, which seems tohave Mono pre-installed by default. However, it is not the latest version of Mono. What is the easiest way to upgrade

[Mono-dev] Building Mono with VS.NET 2005

2006-02-01 Thread Uwe Korn
Hi, I'm just trying to build mono with VS.Net 2005 Beta 2 and when I want to build i get these missing functions: Where can I find them? Uwe L. Korn libmono.lib(domain.obj) : error LNK2019: unresolved external symbol _mono_gc_alloc_fixed referenced in function _mono_domain_create

Re: [Mono-dev] Building Mono with VS.NET 2005

2006-02-01 Thread Sebastien Pouliot
Hello Uwe, Which solution file do you use to build Mono ? The one available on SVN ? If so, it has been updated this morning (but the update wasn't related to the GC). Also be sure that you did a make in cygwin after each update from SVN. note: just to be sure I just cleaned and rebuilded from

RE: [Mono-dev] Xml Serialization tests failing under .NET 2.0

2006-02-01 Thread Gert Driesen
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Atsushi Eno Sent: woensdag 1 februari 2006 8:30 To: Gert Driesen Cc: Lluis Sanchez; mono-devel mailing list Subject: [Mono-dev] Xml Serialization tests failing under .NET 2.0 Hello Gert,

Re: [Mono-dev] Xml Serialization tests failing under .NET 2.0

2006-02-01 Thread Atsushi Eno
Hi Gert, I'm wondering if you can take care of some Xml Serialization tests including whatever you added. Atsushi, I know some of tests I added fail on MS.NET 2.0. I asked for advise on this matter in one of my previous message. Umm, what you asked before was about things that you are

Re: [Mono-dev] patch for System.ComponentModel.Container

2006-02-01 Thread Gonzalo Paniagua Javier
On Tue, 2006-01-31 at 15:24 -0800, Jackson Harper wrote: Attached is a test case that shows a bug in System.ComponentModel.Container, it looks like the type check in DefaultSite.GetService is the culprit does anyone have problems with the attached patch? With this patch I'm able to run

[Mono-dev] Building libgdiplus

2006-02-01 Thread Don Edvalson
Hi, I have a (probably stupid) question that I can't find an answer to. When building libgdiplus, it complains about the lack of libtiff, libjpeg and libgif and tells where to download them. After I download them, where should they be placed relative to libgdiplus and how do I let autoconf

Re: [Mono-dev] Building libgdiplus

2006-02-01 Thread Peter Dennis Bartok
If you build and install the image libs, they will install their .pc files. If your prefix for them was /usr/local, the .pc files will end up in /usr/local/lib/pkgconfig. libgdiplus will use pkg-config to find them. If it doesn't, you need to make sure that PKGCONFIG_PATH (sp?) points to where

[Mono-dev] PATCH for String.StartsWith(string, StringComparison)

2006-02-01 Thread Thong Nguyen
Here's a patch for the 2.0 profile's String.StartsWith(string, StringComparison) and String.EndsWith(string, StringComparison) both of which are missing. stringstartsendswith.diff Description: Binary data ___ Mono-devel-list mailing list