[Mono-list] help with MySqlParameter

2004-11-15 Thread Sergio Duran
Hi, I'm using MySql and C# to get the data, I have been trying to use the MySqlParameter classes with no success, I dont get any results doing it this way, how should it be done? The connstr is valid, but changed here. string connstr = "... valid connection string here ..."; MySqlParameter name =

Re: [Mono-list] help with MySqlParameter

2004-11-15 Thread Sergio Duran
Thanks for the fast reply, you two, Peter and Joe, I got it working now, you have really helped. ___ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] Looking for a library

2004-11-17 Thread Sergio Duran
the chm is a compressed set of html files, I installed the chmlib in gentoo, it unpacks the chm file and you can browse the .html files. You can also check xchm. On Tue, 16 Nov 2004 22:48:42 -0200, Joshua Brickel <[EMAIL PROTECTED]> wrote: > Dear Gainluca, > > Thanks, that seems to have done

[Mono-list] Zebra printers on mono

2004-12-01 Thread Sergio Duran
I'm working on a project that will involve printing some tickets with bar codes, using some Z4M Zebra printers, I would like to know if any of you have previously worked with those kind of printers, and if there is a .net solution already implemented, if not.. I would like to know a way to get the

[Mono-list] Portable way to print

2004-12-28 Thread Sergio Duran
Hi everybody, I'm looking for a way to send some text to a printer, I'm need portability since my program will be running on windows and linux, I now I cannot use FileStream("LPT1") on windows, and I've been reading about some ways using P/Invoke kernel32.dll and CreateFile(), what's the best sol

[Mono-list] Making a copy of a class instance

2005-01-25 Thread Sergio Duran
Hi everybody, I want to make a copy of class instance, but I know classes are asigned by reference, so doing myClass class1=new Class(); myClass class2=class1; is the same as working with pointers, and class2 becomes an alias of class1, I want to make class2 an independent copy of class1, and be