Re: [Mono-dev] JaCIL Project

2006-05-22 Thread Jb Evain
Hi Eyal, Are you guys still using Cecil to read the CIL code? Jb Eyal Alaluf wrote: Hi, all. Just regarding feasibility and practicality - there is already a product implementing this idea. Not coincidently, the product is implemented by my company (Mainsoft) and is called Grasshopper.

Re: [Mono-dev] JaCIL Project

2006-05-22 Thread Eyal Alaluf
We are now in the middle of a rewrite and in this rewrite we are using Cecil and ASM (via IKVM). The version of the converter in the product was written in C++. On Mon, 22 May 2006, Jb Evain wrote: Date: Mon, 22 May 2006 10:08:22 +0200 From: Jb Evain [EMAIL PROTECTED] To: Eyal Alaluf [EMAIL

Re: [Mono-dev] JaCIL Project

2006-05-22 Thread Almann T. Goo
On 5/22/06, Eyal Alaluf [EMAIL PROTECTED] wrote: We are now in the middle of a rewrite and in this rewrite we are using Cecil and ASM(via IKVM). The version of the converter in the product was written in C++.This is a very similar approach to what I am doing--having Cecil take care of the PE

[Mono-dev] Printer profile

2006-05-22 Thread Neale Ferguson
Hi, I have created a few different printer profiles for a printer that I want to invoke under certain conditions. Is there something I can use that will cause a specific profile to be used for a given job? I cannot find anything under PrintDocument.PrinterSettings. Neale

[Mono-dev] Problems connecting to MS SQL with C# and Mono

2006-05-22 Thread muppetboy
Hi, I've tried looking for a solution to this, but not found anything. Hopefully someone on this list will be able to point me in the right direction. I get a horrible exception when attempting to connect to an MS SQL Express server from Mono (it works under the MS CLR). Here is the code I

[Mono-dev] Mono wont start

2006-05-22 Thread Carlos Solorzano
I have trouble on one of my systems where mono won't start my app. This app runs fine on many other systems. I am going to reinstall mono which I bet will fix it but just in case it doesn't or I see it again, has anyone else seen this? root ~/test $ MONO_LOG_LEVEL=debug mono Test.exe

Re: [Mono-dev] Problems connecting to MS SQL with C# and Mono

2006-05-22 Thread Joe Audette
Hi, I get a horrible exception when attempting to connect to an MS SQL Express server from Mono (it works under the MS CLR). Here is the code I use to make the connection: string ConnectionString = Data Source=127.0.0.1\SQLEXPRESS; Database=mydatabase;User ID=user;Password=password;

[Mono-dev] SerialPort and Ring Indicator signal

2006-05-22 Thread jfm
Hi, I'm porting a program running on microsoft .net to mono. This program uses modem information like Dsr and Cts but it also uses RI (ring indicator). My problem is that RI doesn't seem to be supported (see enum MonoSerialSignal in the get_signal_code function in serial.c), am I right ? If

Re: [Mono-dev] Problems connecting to MS SQL with C# and Mono

2006-05-22 Thread muppetboy
Hi, Cheers for the responses. I forgot to mention that I'm testing under Windows, although I will be deploying under Linux. I've been compiling via Vis Studio, and testing it under mono and the clr. Running with the --debug option, the exception is: Unhandled Exception:

Re: [Mono-dev] Problems connecting to MS SQL with C# and Mono

2006-05-22 Thread Daniel Morgan
If you know the TCP port, use it in your connection string. Do you have the ability to connect to SQL Server using TCP/IP. By default, SQL Server 2005 Express has this turned off --- which is good from a security standpoint. See my two backslashes below. string ConnectionString = "Data

Re: [Mono-dev] SerialPort and Ring Indicator signal

2006-05-22 Thread Carlos Alberto Cortez
Well, RING indicator can't be directly used (as opossed to Cts, Dsr, CD, Rts and Dtr). The public API in .Net does not expose this indicator directly (you can only monitor it based on the events). Of course we could add it to the get_signal_code () function and retrieve it. But the real problem

[Mono-dev] Using GTK widgets in Mono

2006-05-22 Thread Ipemail
I need to hand write a C# wrapper for a GTK+ 2 widget in a Linux shared library. Where could I find some Mono samples please? Thanks in advance. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com