Re: [Mono-winforms-list] EXTERNAL: Re: WebBrowser.Navigate throws NullReferenceException

2011-09-01 Thread Robert Jordan
On 01.09.2011 16:37, Burns, Eric wrote: Any thoughts? Read the answers to your post? ___ Mono-winforms-list maillist - Mono-winforms-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-winforms-list

Re: [Mono-winforms-list] CurrentCellDirtyStateChanged DataGridView

2011-09-01 Thread Stifu
The best solution would clearly be to fix the bug and submit a patch. :) The WinForms sources are there: https://github.com/mono/mono/tree/master/mcs/class/Managed.Windows.Forms ingemar wrote: hi, it's me again...the CurrentCellDirtyStateChanged is not fired in mono. for me, that seems to

Re: [Mono-dev] [mozroots]: Microsoft Office files can't be traced to a trusted root

2011-09-01 Thread jaysonp
Hi Robert, Any ideas on this? Thank you -- View this message in context: http://mono.1490590.n4.nabble.com/mozroots-Microsoft-Office-files-can-t-be-traced-to-a-trusted-root-tp3775522p3782868.html Sent from the Mono - Dev mailing list archive at Nabble.com.

Re: [Mono-dev] [mozroots]: Microsoft Office files can't be traced to a trusted root

2011-09-01 Thread Robert Jordan
On 01.09.2011 08:13, jaysonp wrote: Hi Robert, Any ideas on this? I have no idea why the AuthentiCode validation is failing on MS' own files, even if all certs in the path are installed in Mono's store. Files signed with certs not issued by MS do validate properly. You may want to file

Re: [Mono-dev] Lost navigating source

2011-09-01 Thread burns
Hmm . . . I think my first attempt to subscribe to the list failed, so I'm going to try sending this again. burns wrote: Anyone, have a moment to help a n00b? ;o) burns wrote: I'm new to this project, and I was navigating through the source on github, looking for the

Re: [Mono-dev] Lost navigating source

2011-09-01 Thread Jonathan Chambers
Hello, The source code for mono's System.Windows.Forms is located here: https://github.com/mono/mono/tree/master/mcs/class/Managed.Windows.Forms Thanks, Jonathan On Thu, Sep 1, 2011 at 10:39 AM, burns eric.bu...@lmco.com wrote: Hmm . . . I think my first attempt to subscribe to the list

Re: [Mono-dev] [mozroots]: Microsoft Office files can't be traced to a trusted root

2011-09-01 Thread jaysonp
Hi Robert, I've already filed the bug on bugzilla under Mono.Security Class Libraries (Bug 592: [Mono-Security]: Microsoft files' digital certificates can't be traced to a trusted root) Thanks again! -- View this message in context:

[Mono-list] Memory Leaks on Mono for Android

2011-09-01 Thread Kuehner
Hi! Sorry, I did not know how to search for that, so I did not find any solution for this in this forum. I think I am not the only developer with the same problem... I am developing in Visual Studio 2010 with Mono for Android and I think that I have memory leaks in my application. Is there any

Re: [Mono-list] newbie - understanding profiler data

2011-09-01 Thread Alan
You're misunderstanding. That's not the amount of memory being consumed at any single instance in time. That's the total amount allocated since app startup. Therefore the longer your app runs, the bigger all those numbers become. Alan. On 1 Sep 2011 00:59, pjsmith pjsm...@mtgsy.net wrote: I

Re: [Mono-list] Memory Leaks on Mono for Android

2011-09-01 Thread Alex
Hi, I don't know if it's possible to run it on Android, but Valgrind could probably help you. Regards, Alex On Thu, Sep 1, 2011 at 9:21 AM, Kuehner kueh...@initions.com wrote: Hi! Sorry, I did not know how to search for that, so I did not find any solution for this in this forum. I think I

Re: [Mono-list] Memory Leaks on Mono for Android

2011-09-01 Thread Kuehner
Thanks for your answer. I checked that out and it seems very dificult to compile it for Android (impossible for Mono and Visual Studio I think ;-). I'm not very experienced with Linux... so... any other ideas? I'd like to have a profiler that shows all allocated objects, so I know what I have to

Re: [Mono-list] single instance (mutex)

2011-09-01 Thread ingemar
Hi all, today I've solved the single instance issue with mono: private static bool IsApplicationRunningOnMono(string processName) { var processFound = 0; Process[] monoProcesses; ProcessModuleCollection processModuleCollection; //find all

[Mono-list] mono xsp exception

2011-09-01 Thread jupiter . hce
Hi, I have a simple test program to regularily send string data to mono xsp web server via ajax, the web server received it and returned the string data back. It worked fine for 20 minutes, then the mod_mono server threw exceptions in apache httpd error_log and the server stopped response to

[Mono-list] Package Importieren

2011-09-01 Thread Kuehner
Hi! I want to import a package into C#. How can I do that? I have the following java-Sample-Application that works as follows: package com.alk.sdk; public class AlkMsg { How can I import this package with C# and Mono? Is that possible? Thanks for your help. Unfortunately a am a very

Re: [Mono-list] Package Importieren

2011-09-01 Thread Slide
On Thu, Sep 1, 2011 at 6:51 AM, Kuehner kueh...@initions.com wrote: Hi! I want to import a package into C#. How can I do that? I have the following java-Sample-Application that works as follows: package com.alk.sdk; public class AlkMsg { How can I import this package with C# and

Re: [Mono-list] Package Importieren

2011-09-01 Thread Kuehner
Hi! Thanks a lot for your answer. There was a little missunderstanding... in C# I am fine. What I did not know is how to import 3rd Party SDKs made for Java-Applications into Mono and Visual Studio. And that's the point: I do not have a *.jar-File. What I have is a .java-File and a *.so.File.

Re: [Mono-list] Package Importieren

2011-09-01 Thread Slide
You'd have to compile the java code into a jar or class file. Please look at the IKVM website for more information. You can't just add a .java file and compile it as part of a .NET application. On Sep 1, 2011 7:19 AM, Kuehner kueh...@initions.com wrote: Hi! Thanks a lot for your answer. There