[Mono-winforms-list] Windows Forms is broken on OSX

2012-01-19 Thread matteot
Hello mono! I posted the following bug on bugzilla time ago http://bugzilla.xamarin.com/show_bug.cgi?id=2474 We tried this on many machines and we can confirm that the bug occurs on any MAC. I'm wondering if there is something we can do help you fix the problem. Thanks, Matteo -- View this

[Mono-dev] ComVisible patch

2012-01-19 Thread Alistair Leslie-Hughes
http://bugzilla.xamarin.com/show_bug.cgi?id=2946 If the ComVisible attribute is not set then the class should be available via the IDispatch Interface. Best Regards Alistair Leslie-Hughes From af1bd5d9e122c6512ae919b13539064e28436f63 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes

Re: [Mono-dev] Centralized MonoStore

2012-01-19 Thread jaysonp
Hi Robert, I apologize for the immediate follow-up but do you have any ideas regarding my question about $monoprefix on Windows platform? Thanks! -- View this message in context: http://mono.1490590.n4.nabble.com/Centralized-MonoStore-tp4268377p4310308.html Sent from the Mono - Dev mailing

[Mono-dev] Optimization 'precomp' violates ECMA-335

2012-01-19 Thread Martin Däumler
Hello, I tried out several optimizations of Mono 2.6.1 and Mono 2.10.8.1. So I used -O=precomp. The class 'Test' of the appended test case has an (explicit) class constructor. That is, in class Test's IL-code, the field beforefieldinit is not set. ECMA-335 §8.9.5 states that the class

Re: [Mono-dev] Optimization 'precomp' violates ECMA-335

2012-01-19 Thread Rodrigo Kumpera
Precomp is a non standard optimization for this precise reason. Please file a bug report on the issue. I believe making it spec compliant would be nice but non-trivial. So, if you feel like you need it, feel free to submit a patch. On Thu, Jan 19, 2012 at 2:37 PM, Martin Däumler

[Mono-dev] Cross compilation issue

2012-01-19 Thread autif khan
I am trying to cross compile mono with success. However, there is a step that I am not able to figure out. The steps are as follows: 1) Compile mono for the host system - to save the mcs for later use 2) Cross Compile mono with --disable-mcs-build 3) Copy mcs directory from 1 into 2 4) Profit I

Re: [Mono-dev] mono with CoreCLR: How to add custom assemblies

2012-01-19 Thread chandrakant mishra
Hi Sebastien Thanks a lot. That's working now and I can decide what to put as platform code. :) Actually when I tried it earlier, I didn't have proper security attributes in place. My bad.. ^^ There's another thing I would want to explore. Again, I am not using Moonlight but just its security

Re: [Mono-dev] Centralized MonoStore

2012-01-19 Thread jaysonp
Hi Robert, Again I would make a follow-up regarding my question about $monoprefix in Windows. Thanks! -- View this message in context: http://mono.1490590.n4.nabble.com/Centralized-MonoStore-tp4268377p4312574.html Sent from the Mono - Dev mailing list archive at Nabble.com.

Re: [Mono-list] Timmer issue

2012-01-19 Thread Alan
Is your application multithreaded? Alan On 19 January 2012 00:50, Alphawolf1988 alphawolf1...@googlemail.comwrote: I have an issue with a timer. Has someone any idea why this is thrown? http://mono.1490590.n4.nabble.com/file/n4308764/Exception.png Christian Winkel -- View this message

Re: [Mono-list] Recommended approach for embedding VLC in a Mono app?

2012-01-19 Thread shweta
no its not on windows..im using ubuntu11.10and im trying to embed mplayer in gtk# widget i used the above code but this code invoke mplayer exe separetaly..i want tht mplayer exe to open in gtk widget. can u help me out in this -- View this message in context:

Re: [Mono-list] Recommended approach for embedding VLC in a Mono app?

2012-01-19 Thread shweta
THIS IS THE CODE using System; using Gtk; using System.Runtime.InteropServices; public partial class MainWindow : Gtk.Window { private Gtk.Socket socket; private int xid; public MainWindow () : base(Gtk.WindowType.Toplevel) { Build ();

Re: [Mono-list] Timmer issue

2012-01-19 Thread Alan
re-adding mono-list to the email... On 19 January 2012 16:17, Alan alan.mcgov...@gmail.com wrote: Your app is not threadsafe and the non-deterministic behaviour is due to a race condition. It is impossible to diagnose it from a snippet like this. The odds are high that one thread is

Re: [Mono-list] DataAdapter.Update throws null constraint violation

2012-01-19 Thread Chris Derrick
I wrote this post months ago (apparently before I was registered as a subscriber) and didn't realize that it had never been accepted by the mailing list. So I'm posting the exact message again here: At first I thought that this was a problem with NpgSQL, but I have just confirmed it also happens

Re: [Mono-list] Mono Apache2 and cshtml files

2012-01-19 Thread monoforum
Thanks for the replies, however, I've already tried the things suggested, or at least I thought I did but it's now working. It was quite confusing as I use MVC3 on mono, with Razor, for my own site on the same server, so I thought I had it down... I may have missed a dll, so here are the

Re: [Mono-list] DataAdapter.Update throws null constraint violation

2012-01-19 Thread plaid
I'm having the same/similar issue using a VM of openSUSE 11.4 (both 32-bit and 64-bit) with the latest repository of Mono (2.10.6 and 2.10.2 respectively). Right now I'm trying to get it to connect to SQL Server 2000. My implementation is a WinForms .NET 4 (Full Profile) program compiled as an

Re: [Mono-list] DataAdapter.Update throws null constraint violation

2012-01-19 Thread plaid
FYI, I've also found https://bugzilla.novell.com/show_bug.cgi?id=522624 which seems to be related to this same issue as well, though it seems to show it has been resolved, I find it anything but such at the moment. - Ars Longa, Vita Brevis. -- View this message in context:

[Mono-list] Install mono on centos 6.2

2012-01-19 Thread ruro
I've tried install mono on centos 6.2 to run some software *System.Windows.Forms.Application* First I've success successfully install the dev /# yum groupinstall Additional Development Development tools Desktop Platform Development Server Platform Development / Then I've install mono-winforms

Re: [Mono-list] Install mono on centos 6.2

2012-01-19 Thread Abe Gillespie
Your app most likely uses features that Mono does not implement. To be sure you can run your app through MoMA: http://www.mono-project.com/MoMA On Thu, Jan 19, 2012 at 10:14 PM, ruro rur...@yahoo.com wrote: I've tried install mono on centos 6.2 to run some software