[Mono-dev] [Fwd: Question about DataRelations and ForeignKeyConstraint]

2006-08-19 Thread xiii29
Hi, My applications uses a DataSet with DataRelations to store information. After created a relation, I also create a ForeignKey between the same two columns. With the 1.1.13.4 version of mono : no trouble everything is working. With the 1.1.16.1 version of mono : I get this messages :

[Mono-dev] System.Transactions

2006-08-19 Thread Matthijs ter Woord
Hi, What are the plans on System.Transactions.dll? Regards, Matthijs ter Woord ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] [mono-vb] Visual Basic upgrade.

2006-08-19 Thread Rolf Bjarne
Hello, The vbnc compiler is currently emitting 2.0 assemblies, and regarding the two issues for it to emit 1.0/1.1 assemblies the first one is the easiest (the only feature that would have to be disabled is generics, VB8 does not support directly nullable types like C# - and if you disable

Re: [Mono-dev] System.Transactions

2006-08-19 Thread Ankit Jain
It is currently implemented with a LTM (Local Transaction Manager) in mono. (mcs/class/System.Transactions). You can check the class status at http://mono.ximian.com/class-status/mono-HEAD-vs-fx-2/class-status-System.Transactions.html DependentTransaction is not implemented yet, rest should work

Re: [Mono-dev] Embedded Mono/Program freezes

2006-08-19 Thread Robert Jordan
Janne Rantala wrote: 2006/8/19, Robert Jordan [EMAIL PROTECTED]: You wrote that you're using mono_runtime_exec_managed_code (). If I understand the code correctly, the function will shutdown the runtime after the callback terminates. That's probably not what you expect, isn't it? Try

[Mono-dev] eglib Windows patch

2006-08-19 Thread Jon Chambers
Here is a patch to support gmodule under windows and fix the windows build. Contribution is MIT/X11 licensed. Also, I couldn't build on linux 64-bit since there are some warnings about pointers being cast to int of smaller size (and warnings are set to be treated as errors). Thanks,Jonathan

Re: [Mono-dev] [Mono-list] [mono-vb] Visual Basic upgrade.

2006-08-19 Thread Gert Driesen
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-list- [EMAIL PROTECTED] On Behalf Of Rolf Bjarne Sent: donderdag 17 augustus 2006 12:52 To: Miguel de Icaza; Gert Driesen Cc: mono-list@lists.ximian.com; 'Jelmer Vernooij'; mono- [EMAIL PROTECTED];

Re: [Mono-dev] [Mono-list] [mono-vb] Visual Basic upgrade.

2006-08-19 Thread Gert Driesen
-Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: zaterdag 19 augustus 2006 17:08 To: 'Rolf Bjarne'; 'Miguel de Icaza' Cc: 'mono-list@lists.ximian.com'; 'Jelmer Vernooij'; 'mono- [EMAIL PROTECTED]'; 'mono-devel-list@lists.ximian.com' Subject: RE: [Mono-list]

Re: [Mono-dev] Embedded Mono/Program freezes

2006-08-19 Thread Janne Rantala
2006/8/19, Robert Jordan [EMAIL PROTECTED]: Janne Rantala wrote: 2006/8/19, Robert Jordan [EMAIL PROTECTED]: You wrote that you're using mono_runtime_exec_managed_code (). If I understand the code correctly, the function will shutdown the runtime after the callback terminates. That's

Re: [Mono-dev] [Mono-list] [mono-vb] Visual Basic upgrade.

2006-08-19 Thread Miguel de Icaza
Hello, The vbnc compiler is currently emitting 2.0 assemblies, and regarding the two issues for it to emit 1.0/1.1 assemblies the first one is the easiest (the only feature that would have to be disabled is generics, VB8 does not support directly nullable types like C# - and if you

[Mono-dev] Buy ESR an iPod

2006-08-19 Thread Justin Dearing
https://www.fundable.org/groupactions/ericraymondipod I thought it was worth $10. Apparently, there is a site that makes third party firmware for iPosds and jukeboxes. Got to test it on the girlfriends iPod. http://www.rockbox.org/ ___ Mono-devel-list

Re: [Mono-dev] Buy ESR an iPod (wrong list)

2006-08-19 Thread Justin Dearing
My apologies. I did not intend to send this to the list. Please dont block me as a spammer. Message: 8 Date: Sat, 19 Aug 2006 14:03:15 -0400 From: Justin Dearing [EMAIL PROTECTED] Subject: [Mono-dev] Buy ESR an iPod To: mono-devel-list@lists.ximian.com, [EMAIL PROTECTED] Message-ID:

Re: [Mono-dev] System.Transactions

2006-08-19 Thread Miguel de Icaza
Hello, It is currently implemented with a LTM (Local Transaction Manager) in mono. (mcs/class/System.Transactions). You can check the class status at http://mono.ximian.com/class-status/mono-HEAD-vs-fx-2/class-status-System.Transactions.html DependentTransaction is not implemented yet,

Re: [Mono-dev] reg: HTTPS file transfer.

2006-08-19 Thread Miguel de Icaza
Hello, Is it possible to upload the xml files using HTTPS on a linus based machine? Yes. Is it possible to write a C# code for this functionality? Yes. Could you please share your code so that I can implement the upload functionality. Same way as you do with .NEt

Re: [Mono-dev] reg: HTTPS file transfer.

2006-08-19 Thread Sebastien Pouliot
On Sat, 2006-08-19 at 13:25 -0400, Miguel de Icaza wrote: Hello, Is it possible to upload the xml files using HTTPS on a linus based machine? Yes. Is it possible to write a C# code for this functionality? Yes. Could you please share your code so that I can implement

Re: [Mono-dev] Embedded Mono/Program freezes

2006-08-19 Thread Janne Rantala
when I run that program two times everything still works fine but I get that The request timed out. Is it because that runtime shutdown or something else? Last time you wrote that the second request is timing out. If the third is timing out, we are back to the first guess: the socket

[Mono-dev] Looking for pointers on loading an AOT (pre-JITted) binary

2006-08-19 Thread Victor Costan
Hi everyone, I'm investigating writing a .net (CIL) kernel. My focus right now is on bootstrapping the kernel. I figured that the best way of getting it running is to obtain a processor-specific (Intel-specific at the moment) executable using Mono's AOT (ahead-of-time) JITter, then have the boot

Re: [Mono-dev] Embedded Mono/Program freezes

2006-08-19 Thread Robert Jordan
Janne Rantala wrote: 2006/8/19, Robert Jordan [EMAIL PROTECTED]: Janne Rantala wrote: You said earlier that mono_runtime_exec_managed_code also shuts down the runtime, even if it does that, is it a problem in my case? Because I said: if I understand the code correctly. There is definitely