Re: [Mono-dev] Can anyone explain this to me? It's the Bermuda triangle.

2014-04-23 Thread Rolf Bjarne Kvinge
Hi, I'm not aware of any other thread which could be throwing the exception - as seen in code below, there is only one thread, and it's not a background thread, so even if some other thread *does* die somehow, it shouldn't interfere with this one. When a thread dies because of an unhandled

Re: [Mono-dev] Repeat builds of core assemblies

2014-04-23 Thread Rolf Bjarne Kvinge
Hi, On Tue, Apr 22, 2014 at 9:53 PM, Miguel de Icaza mig...@xamarin.com wrote: Hey guys, I was looking at making the MSBuild system work, and during the process I have encountered a few problems that we have in our existing build system that are problematic. The problem is that System,

Re: [Mono-dev] Can anyone explain this to me? It's the Bermuda triangle.

2014-04-22 Thread Rolf Bjarne Kvinge
Hi, It's possible if the exception is thrown on another thread. Try adding an AppDomain.UnhandledException handler and print out the thread id (and do the same in OnRemoteCertificateValidation). Comparing the thread ids will show you if this is happening in the same thread or not. Rolf On

Re: [Mono-dev] Contribution

2014-03-18 Thread Rolf Bjarne Kvinge
Hi, The standard way is to fork on github, then send a pull request. Best regards, Rolf On Tue, Mar 18, 2014 at 3:15 PM, Edward Ned Harvey (mono) edward.harvey.m...@clevertrove.com wrote: Ok, I have a contribution to make. In Mono.Security/Mono.Security.X509/X509Store.cs, the

Re: [Mono-dev] Building Mono from Git with MSVC

2013-05-13 Thread Rolf Bjarne Kvinge
Hi, The MSVC build is kept up-to-date on a volunteer basis, but it's only updated once in a while (usually when one of the people using the MSVC build finds out it's broken). What this means is that we don't support the MSVC build, but we're happy to get pull requests ;-) Rolf On Mon, May 13,

Re: [Mono-dev] Why does Mono's CoreCLR blocks internal method reflection from transparent code ?

2013-03-26 Thread Rolf Bjarne Kvinge
I believe you're asking the wrong question: why should CoreCLR allow transparent code to call internal methods? It doesn't matter if they're transparent or not, there's a reason a method is internal and you can make the object confused if internal methods are called directly. Rolf On Sun, Mar

Re: [Mono-dev] Propose renaming fprintf to g_message

2012-07-18 Thread Rolf Bjarne Kvinge
Hi, On Wed, Jul 18, 2012 at 5:19 PM, Stephen Shaw ss...@decriptor.com wrote: As I understand it, fprintf doesn't work on all platform or at least on android. I've been looking specifically at the sgen code and as I'm trying to figure out what exactly is happening on the heap. From what I

Re: [Mono-dev] Alternative for monodis?

2012-02-23 Thread Rolf Bjarne Kvinge
Hi, monodis usually works if you set MONO_PATH to the directory where the platform assemblies are, something like this for 4.0 assemblies: MONO_PATH=/usr/local/lib/mono/gac/4.0 monodis yourassembly.dll Rolf On Thu, Feb 23, 2012 at 8:22 AM, Markku Tavasti tava...@tavasti.fi wrote: On

Re: [Mono-dev] Alternative for monodis?

2012-02-23 Thread Rolf Bjarne Kvinge
Hi, Another way of making monodis work is to put all the referenced assemblies (every single one, down to mscorlib.dll) in the same directory, and then run: MONO_PATH=. monodis assembly.dll This particular crash is most likely because monodis can't find one of the referenced assemblies. Rolf

Re: [Mono-dev] CreateProcess: error creating process handle

2012-01-09 Thread Rolf Bjarne Kvinge
Hi, On Sun, Jan 8, 2012 at 8:30 PM, Jake1305 jake1...@gmail.com wrote: Hi there, Recently I've been developing an application in C# and I am using Mono to run it on Linux, I'm specifically testing on Debian 6. After a 2-8 hours the application keeps showing a warning, which is

Re: [Mono-dev] MDB file format

2011-12-15 Thread Rolf Bjarne Kvinge
Hi, As far as I know there is no formal specification, and historically the format hasn't been very stable either. What might be a better approach would be to read pdb directly - this is possible (Microsoft has released C# code to read pdb files): http://ccimetadata.codeplex.com. You can also

[Mono-dev] NuGet

2011-10-07 Thread Rolf Bjarne Kvinge
Hi, I've tried to make the NuGet commandline client working with mono, and today I committed the latest fixes which makes the basic operations (spec, pack, publish/push) work using mono master. To build NuGet using mono master [1] a couple of minor changes are required (see attached diff): *

[Mono-dev] Fwd: Native stack trace in mono-2-10

2011-09-12 Thread Rolf Bjarne Kvinge
Sorry, this was meant for the entire list. -- Forwarded message -- From: Rolf Bjarne Kvinge r...@xamarin.com Date: Mon, Sep 12, 2011 at 10:30 PM Subject: Re: [Mono-dev] Native stack trace in mono-2-10 To: Bassam Tabbara bas...@symform.com Hi, If you can, using Valgrind

Re: [Mono-dev] Continuous Integration for Mono

2011-07-04 Thread Rolf Bjarne Kvinge
Hi, From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list-boun...@lists.ximian.com] On Behalf Of Miguel de Icaza Sent: lunes, 27 de junio de 2011 2:24 To: gro...@gmail.com Cc: mono-devel-list Subject: Re: [Mono-dev] Continuous Integration for Mono For the sake of throwing

Re: [Mono-dev] Continuous Integration for Mono

2011-07-04 Thread Rolf Bjarne Kvinge
On 04/07/2011 11:16, Rolf Bjarne Kvinge wrote: The problem has always been getting enough hardware in all the variations mono supports. So if anybody has any machines or VMs that can run full-time please send me a mail. Have in mind that it'll be pretty much required to give us root access

Re: [Mono-dev] [PATCHES] Improve process exit/wait handling

2011-03-18 Thread Rolf Bjarne Kvinge
Hi Rodrigo, Hi Rolf, Reviewing 0004-io-layer-Improve-waiting-on-processes-a-lot.patch: + // Ensure we're not in here in multiple threads at once, nor recursive. + if (InterlockedIncrement (mono_processes_cleaning_up) 1) { + InterlockedDecrement

Re: [Mono-dev] [PATCHES] Improve process exit/wait handling

2011-03-18 Thread Rolf Bjarne Kvinge
Hi, Awesome patches. Comments below. On Thu, 2011-03-17 at 00:26 +0100, Rolf Bjarne Kvinge wrote: [...] 4) Improve waiting on processes a lot     Here are all the juicy bits: I changed process waiting to use     a SIGCHLD handler and automatically wait on all processes.     This fixes #668867

[Mono-dev] [PATCHES] Improve process exit/wait handling

2011-03-16 Thread Rolf Bjarne Kvinge
Hi, Here is a series of patches that improves process waiting, the first three being trivial: 1) Make the special_wait functions take an alertable flag. This doesn't actually change anything, just add a parameter to several functions. The alertable flag is used in the last patch (so

Re: [Mono-dev] Urgent: need more help with Git :(

2011-01-08 Thread Rolf Bjarne Kvinge
Hi, It’s happened to everybody at least once, so welcome to the club J Rolf From: st...@free.fr [mailto:st...@free.fr] Sent: sábado, 08 de enero de 2011 8:52 To: Rolf Bjarne Kvinge Cc: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Urgent: need more help with Git :( Hi

Re: [Mono-dev] Urgent: need more help with Git :(

2011-01-07 Thread Rolf Bjarne Kvinge
Hi, When pulling new remote changes you can do git pull -rebase which will avoid the (scary, but completely harmless) merge commit git added for you (I don't know how to do that with TortoiseGit, but I assume there is a way) Rolf From: mono-devel-list-boun...@lists.ximian.com

Re: [Mono-dev] Please help this Git newbie

2011-01-05 Thread Rolf Bjarne Kvinge
Hi, You need to create a fork of mono in your github account before you can check it out using your username. Rolf From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list-boun...@lists.ximian.com] On Behalf Of Stifu Sent: miércoles, 05 de enero de 2011 8:56 To:

Re: [Mono-dev] [mono/moon] [2 commits] fd3b2520: Add a checkout-mono target that parses the README and checks out the cor

2010-10-12 Thread Rolf Bjarne Kvinge
Hi, Firstly, the 'reset --hard' is an absolute no-no for a checkout. Please use 'git checkout'. 'reset' modifies the branch metadata -- checkout only modifies the working tree. 'reset --hard' is a too-convenient bludgeon that smashes your branch metadata and working tree with one

Re: [Mono-dev] [mono/moon] [2 commits] fd3b2520: Add a checkout-mono target that parses the README and checks out the cor

2010-10-07 Thread Rolf Bjarne Kvinge
Hi, Firstly, the 'reset --hard' is an absolute no-no for a checkout. Please use 'git checkout'. 'reset' modifies the branch metadata -- checkout only modifies the working tree. 'reset --hard' is a too-convenient bludgeon that smashes your branch metadata and working tree with one misleadingly

Re: [Mono-dev] Stability regression on recent git head

2010-09-16 Thread Rolf Bjarne Kvinge
It still crashes with the same stack trace, even with git master as of a couple of minutes ago. I double-checked, and your change is there. As a debugging idea you can try running mono with the MONO_DEBUG=keep-delegates option. If the delegate is collected, you'll get an assert. If something

Re: [Mono-dev] Mono integration, and when do we ship Mono with Wine?

2010-09-01 Thread Rolf Bjarne Kvinge
Hi, I am not currently able to create a Windows build of gluezilla or gecko using only free software. As I understand it, the official Windows build relies on Visual Studio. The express versions of Visual Studio are free. Some work might be required to make the project files work with the

Re: [Mono-dev] [patch] VBCodeGenerator generic arguments

2010-08-09 Thread Rolf Bjarne Kvinge
Hi, A couple of comments: You refactor some code into another method (DetermineTypeOutput), which shouldn't be in the same patch as the other changes (i.e. one patch for the support for generic arguments, then another patch for the refactoring). A few tests covering the change would also be nice

Re: [Mono-dev] ../mini/.libs/libmono-2.0.so: undefined reference to `MONO_DEBUGGER__debugger_info'

2010-07-05 Thread Rolf Bjarne Kvinge
Hi, You've configured mono without debugger support (--disable-mono-debugger), which is currently broken (it should get fixed later today). Either reconfigure with debugger support, or wait until tomorrow :) Rolf -Mensaje original- De: mono-devel-list-boun...@lists.ximian.com

Re: [Mono-dev] Moonlight and OSS4 sound ubuntu 9.10 and opensuse11.2

2010-07-03 Thread Rolf Bjarne Kvinge
Hi, I can dig further, but perhaps someone in the know on moonlight, can very easily comment on why sound doesn't work on linux with OSS4. Is it only made to work with alsa/pulse? It there a solution? Moonlight only has support for alsa and pulseaudio, oss hasn't been implemented. We do of

Re: [Mono-dev] Simple floating maths problem

2010-04-30 Thread Rolf Bjarne Kvinge
Hi, Running this modified simple on x86 .NET: int fact = 5; float [] tList = { 0.95864f, 0.89374f, 0.89092f, 0.89716f, 0.4191f, 0.79782f }; foreach (float val in tList) { int comp = (int)

Re: [Mono-dev] mcs build changes for moonlight

2010-03-15 Thread Rolf Bjarne Kvinge
Hi, -Mensaje original- De: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list- boun...@lists.ximian.com] En nombre de Jb Evain Enviado el: viernes, 12 de marzo de 2010 16:23 Para: mono-devel-list; moonlight-list Asunto: [Mono-dev] mcs build changes for moonlight

Re: [Mono-dev] moonlight

2010-02-17 Thread Rolf Bjarne Kvinge
Hi, At FOSDEM Andreia told me that Linux x86/amd64 were the only supported platforms but patches would be welcome for other platforms. For starters, moonlight needs to find a way to stop using libunwind since this library is almost a Linux-only thing. It has been partially ported only to

Re: [Mono-dev] Request to include a patch for Gregoraian localization in mono

2009-12-16 Thread Rolf Bjarne Kvinge
Hi, I didn't really write that code, but I'll review and apply the patch if it is ok, when I am back to work tomorrow. It's also here: https://bugzilla.novell.com/show_bug.cgi?id=564910, where I've added a couple of comments. Rolf Atsushi Eno On 2009/12/16 9:42, Miguel de Icaza wrote:

[Mono-dev] SLED10 build broken

2009-10-20 Thread Rolf Bjarne Kvinge
Hi, Between r144107 and r144364 mono's build on SLED10 got broken: MCS [net_1_1] Mono.Data.Tds.dll Assembly ../../class/lib/net_1_1/Mono.Data.Tds.dll signed. make[9]: Leaving directory `/home/builder/src/mcs/class/Mono.Data.Tds' make[8]: Leaving directory

[Mono-dev] Patch adding mono_domain_unload_embedded

2009-09-25 Thread Rolf Bjarne Kvinge
Hi, Attached is a patch which adds a mono_domain_unload_embedded method. In contrast to the normal mono_domain_unload method, the embedded one returns an exception instead of throwing it (removing the requirement mono_domain_unload has that it must be only called from an icall), so that

Re: [Mono-dev] VBNC and embedding

2009-08-01 Thread Rolf Bjarne Kvinge
Hi, A couple of debugging hints I'd try: Use Console.WriteLine instead of MessageBox Modify the vbnc script (which calls the vbnc.exe executable) to dump compiler parameters / code to a file and try to reproduce executing vbnc directly. Rolf -Original Message- From:

Re: [Mono-dev] [Mono-list] The Mono 1.0 profile.

2009-07-21 Thread Rolf Bjarne Kvinge
Hi, Sure, but you could just make the 1.0 profile opt-in. Every now and then somebody checks in code that doesn't build on the 1.0 profile (this happens several times a month). If we make the 1.0 profile opt-in, these breakages won't get fixed immediately, which will sooner or later lead to

Re: [Mono-dev] VB Msgbox Patch

2009-05-20 Thread Rolf Bjarne Kvinge
Hi, I looked at the patch and it looks like a reasonable fix. It would be perfect if you could implement a simple NUnit test that verifies the new (correct) behavior. I was about to say the same until I realized a unit test would actually put up a message box (and unless there's somebody

Re: [Mono-dev] VB Msgbox Patch

2009-05-20 Thread Rolf Bjarne Kvinge
Hi, A slightly modified patch has been committed, thanks a lot! Rolf From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list-boun...@lists.ximian.com] On Behalf Of Lachlan Keown Sent: miércoles, 20 de mayo de 2009 1:22 To: mono-devel-list@lists.ximian.com Subject:

Re: [Mono-dev] vbnc error

2009-05-13 Thread Rolf Bjarne Kvinge
Hi, I've also updated vbnc to give the correct source code location for the issue. I've updated to 133958 and I'm still getting the same error (albeit much later on in the code). I didn't fix the bug, I just made vbnc report correctly the code location which makes it crash (instead of

Re: [Mono-dev] vbnc error

2009-05-12 Thread Rolf Bjarne Kvinge
Hi, Hi, I'm using vbnc (from the mono-2.4 releases). While trying to compile some code, MD is reporting a vbnc error File not found: /home/paul/Programming/Sudoku/MyGenerator I've not seen that one before - any ideas on the cause or if it's a known problem? It's a bug in vbnc, I

Re: [Mono-dev] mono-basic svn 121506 building problem

2008-12-16 Thread Rolf Bjarne Kvinge
Hi, I think there is a problem with one of the makefiles in MB svn 121506. When you build, it is not honouring the correct build directory for the manual. I'm building for fedora rawhide (it builds the package for me, this is submitted and built on koji), but when it comes to installing

Re: [Mono-dev] [PATCH] VB runtime: implement Asc and Chr correctly

2008-11-17 Thread Rolf Bjarne Kvinge
Hi, Looks good to me, please commit. Thanks! Rolf -Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Kornél Pál Sent: sábado, 15 de noviembre de 2008 20:41 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] [PATCH] VB runtime:

Re: [Mono-dev] Ideas for Mono on Windows

2008-11-12 Thread Rolf Bjarne Kvinge
Hi, As one of the true maintainers of classlibs I'm completely against ideas to drop cygwin support as it completely destroys my hacking life (note that I don't mean I dislike adding VS build support), but anyways here I agree with jpobst on the part to keep using dll.sources. Here is what

Re: [Mono-dev] VB.NET and Monodevelop problem

2008-11-03 Thread Rolf Bjarne Kvinge
Hi, Not sure where the problem is with this. I'm using Monodevelop 1.9, Mono-2.0.1, mono-basic 2. I've created an application in VB.NET 2005 and imported it into MD. It's fine and I can run the binary (created under VB) without a hitch. When I try and build under MD, I'm getting the

Re: [Mono-dev] VB.NET under Mono 2.0-RX

2008-10-03 Thread Rolf Bjarne Kvinge
Hi, Can anyone tell me if even the most simple VB.NET application is running ie: MessageBox.Show() under Mono 2.0-RX ? I'm using this from the embedding API, it was working under 1.9.1, but now it only gives me 0: Error ID: VBNC_CRASH,'' This is a compiler crash, but I'd need a reproducible

Re: [Mono-dev] Strong-named assembly built with Linux Mono not working with Windows VB Web Application

2008-10-03 Thread Rolf Bjarne Kvinge
Hi, Please file a bug report at bugzilla.novell.com, my guess would be that it's a bug in mcs (but I've been wrong before J) Rolf From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dean Brettle Sent: jueves, 02 de octubre de 2008 8:09 To: Rolf Bjarne Kvinge Cc: mono-devel

Re: [Mono-dev] VBCodeProvider always returns VBNC_CRASH under mono 2.0 beta preview used through the embedding API

2008-08-26 Thread Rolf Bjarne Kvinge
Hi, Hi Guys, When using the VBCodeProvider to compile a very simple Hello World script through the embedding API mono version 2.0 beta preview, it always returns VBNC_CRASH in the errors. The CSharpCodeProvider works. Using mono 1.9.1 the VBCodeProvider works as expected. (tested on

Re: [Mono-dev] moonlight source in mono-2.0

2008-08-18 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Paul Sent: martes, 19 de agosto de 2008 0:03 To: mono-devel Subject: Re: [Mono-dev] moonlight source in mono-2.0 Hi, Also... why would the source code need to be removed at all

Re: [Mono-dev] Streaming with Moonlight/Silverlight vs Flash

2008-07-07 Thread Rolf Bjarne Kvinge
Hi Federico, I am about to choose the technology that will be used during the next two years to build the ESOF2010 web site (if you're curious about ESOF just check this year website, http://www.esof2008.org/). The project for 2010 includes a lot of streaming using preferably open protocols

Re: [Mono-dev] My namespace (VB)

2008-06-25 Thread Rolf Bjarne Kvinge
Are there any plans to implement System.Deployment and the My namespace in the next release (or 2.0 release) of mono? It's quite important... The My namespace is already done, if you have any problems please file bugs. Rolf ___ Mono-devel-list

Re: [Mono-dev] My namespace (VB)

2008-06-25 Thread Rolf Bjarne Kvinge
Hi Paul, The My namespace is already done, if you have any problems please file bugs. Is it in 1.9.1 or in svn? It's been in for over a year, so it's definitively in 1.9.1. Rolf ___ Mono-devel-list mailing list

Re: [Mono-dev] Mono on wine redux

2008-04-11 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Dan Kegel Sent: viernes, 11 de abril de 2008 15:46 To: Andreas Nahr Cc: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Mono on wine redux On Fri, Apr 11, 2008 at 12:20

Re: [Mono-dev] Mono on wine redux

2008-04-11 Thread Rolf Bjarne Kvinge
-Original Message- From: Michael J. Ryan [mailto:[EMAIL PROTECTED] Sent: sábado, 12 de abril de 2008 3:32 To: Rolf Bjarne Kvinge Subject: Re: [Mono-dev] Mono on wine redux On 04/11/2008 07:15 AM, Rolf Bjarne Kvinge wrote: But what percent of .net apps are pure? Quite a big

Re: [Mono-dev] Resource Issue

2008-02-29 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Jonathan Pobst Sent: sábado, 01 de marzo de 2008 0:45 To: Mono Devel List Subject: [Mono-dev] Resource Issue I hate to just dump my project here, but I am having trouble making a

Re: [Mono-dev] Missing files in System.Windows.Forms?

2007-12-30 Thread Rolf Bjarne Kvinge
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jernej Kaše Sent: domingo, 30 de diciembre de 2007 10:55 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] Missing files in System.Windows.Forms? Hi, I'm trying to compile SWF2k5 solution with  VS, but some files are

Re: [Mono-dev] can't compile svn ?

2007-12-18 Thread Rolf Bjarne Kvinge
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Onur Gumus Sent: martes, 18 de diciembre de 2007 11:21 To: monodevlist Subject: [Mono-dev] can't compile svn ? For some reason I am unable to compile mono from svn with the following error. Any hints for me ? Update again. It was

Re: [Mono-dev] Problems Compiling Mono in Cygwin

2007-12-14 Thread Rolf Bjarne Kvinge
Hi, #2 has happened to me a couple of times too when running 'make'. It's a very sporadic error which occurs once in a while and in different places, so what I did was running make again until it finished successfully (it always got a little bit further while compiling, until it finished

Re: [Mono-dev] Problems Compiling Mono in Cygwin

2007-12-14 Thread Rolf Bjarne Kvinge
Hi, From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Luke Page Sent: viernes, 14 de diciembre de 2007 10:54 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] Problems Compiling Mono in Cygwin Hello, I am currently pulling my hair out over compiling the latest trunk of mono

Re: [Mono-dev] Moonlight in Opera on UNIX

2007-11-06 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Patricia Aas Sent: martes, 06 de noviembre de 2007 13:29 To: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Moonlight in Opera on UNIX Hi all, the install is still

Re: [Mono-dev] VB.Net Missing Run-Time Functions?

2007-10-31 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Lennie De Villiers Sent: miércoles, 31 de octubre de 2007 12:12 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] VB.Net Missing Run-Time Functions? Hi, Some things are

Re: [Mono-dev] VB.Net 9?

2007-10-31 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Lennie De Villiers Sent: miércoles, 31 de octubre de 2007 12:11 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] VB.Net 9? Hi, Are someone working on VB.Net 9 for Mono?

Re: [Mono-dev] Silverlight/Moonlight questions

2007-10-19 Thread Rolf Bjarne Kvinge
Thanks again Rolf, and Miguel. Now my ideas are much clearer. Just some more: :) Rolf Bjarne Kvinge escribió: Hi, - As you guys have managed to make widgets for the desktop using Moonlight, could this be done also with Silverlight? I think so yes. There are Vista gadgets done

Re: [Mono-dev] Silverlight/Moonlight questions

2007-10-19 Thread Rolf Bjarne Kvinge
questions and we finish! :) Rolf Bjarne Kvinge escribió: Thanks again Rolf, and Miguel. Now my ideas are much clearer. Just some more: :) Rolf Bjarne Kvinge escribió: Hi, - As you guys have managed to make widgets for the desktop using Moonlight, could this be done also

Re: [Mono-dev] Silverlight/Moonlight questions

2007-10-18 Thread Rolf Bjarne Kvinge
Hi, - As you guys have managed to make widgets for the desktop using Moonlight, could this be done also with Silverlight? I think so yes. There are Vista gadgets done with Silverlight somewhere. If yes, how one could do that from a normal .NET application that could call a Silverlight

Re: [Mono-dev] Silverlight/Moonlight questions

2007-10-18 Thread Rolf Bjarne Kvinge
-Original Message- From: Andrés G. Aragoneses [ knocte ] [mailto:[EMAIL PROTECTED] Sent: jueves, 18 de octubre de 2007 19:12 To: Rolf Bjarne Kvinge Cc: mono-devel-list@lists.ximian.com Subject: Re: Silverlight/Moonlight questions Hey Rolf thanks for replying! Rolf Bjarne

Re: [Mono-dev] glibc detected *** mono: double free or corruption

2007-10-17 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Stephen A Sent: martes, 16 de octubre de 2007 21:58 To: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] glibc detected *** mono: double free or corruption C-code

Re: [Mono-dev] glibc detected *** mono: double free or corruption

2007-10-15 Thread Rolf Bjarne Kvinge
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Abir Bhattacharya Sent: lunes, 15 de octubre de 2007 15:00 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] glibc detected *** mono: double free or corruption Hi All, Am receiving an native crash error like : *** glibc

Re: [Mono-dev] Marshalling: Bug in StructLayout?

2007-08-18 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Prakash Punnoor Sent: sábado, 18 de agosto de 2007 16:21 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] Marshalling: Bug in StructLayout? Hi, I am not sure whether I

Re: [Mono-dev] Can't compile with mono

2007-08-16 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: lunes, 06 de agosto de 2007 18:21 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] Can't compile with mono Hi, When I try to compile a project

Re: [Mono-dev] [Mono-list] Problems getting libgdiplus from subversion repository

2007-08-16 Thread Rolf Bjarne Kvinge
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Martin Trejo Sent: jueves, 09 de agosto de 2007 20:15 To: [EMAIL PROTECTED] Cc: Mono List; mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] [Mono-list] Problems getting libgdiplus from subversion repository Hi Sebastien,

Re: [Mono-dev] Mono 1.2.5 Preview 2

2007-08-03 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of pablosantosluac Sent: viernes, 03 de agosto de 2007 15:02 To: Wade Berrier; mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Mono 1.2.5 Preview 2 Hi, I've just run

Re: [Mono-dev] unable to run VB.NET or C# applications on OS X

2007-07-30 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Jouini Karim Sent: lunes, 30 de julio de 2007 16:22 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] unable to run VB.NET or C# applications on OS X Please, i'm running OS

Re: [Mono-dev] Error compiling code at runtime

2007-07-27 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Ori Sent: viernes, 27 de julio de 2007 10:57 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] Error compiling code at runtime Hello, I'm using the CSharpCodeProvider

Re: [Mono-dev] How To know in runtime inside a C# program

2007-07-26 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of josepascual Sent: jueves, 26 de julio de 2007 10:30 To: 'Mono devel list' Subject: [Mono-dev] How To know in runtime inside a C# program Hi Everyone, I'm doing a program in C#

Re: [Mono-dev] DirectShow.NET implementation on MONO

2007-07-23 Thread Rolf Bjarne Kvinge
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Abir Bhattacharya Sent: lunes, 23 de julio de 2007 12:40 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] DirectShow.NET implementation on MONO Hi, Recently I am trying to port one of my WinForm Application to MONO , I

Re: [Mono-dev] Error in UnixGroupInfo

2007-06-21 Thread Rolf Bjarne Kvinge
So we have two proposed solutions: 1. Skip invalid user names in UnixGroupInfo.GetMembers(). Pro: Allows use on mis-configured systems Con: The only way to know that an error occurred is to compare UnixGroupInfo.GetMembers().Length to UnixGroupInfo.GetMemberNames().Length, and then

[Mono-dev] System.Globalization/Era patch

2007-05-31 Thread Rolf Bjarne Kvinge
Here is a patch that changes the Gregorian era from C.E./Common Era to AD/A.D. to match MS better. More changes are required to get a complete match though (era names depend on culture, they're called DC/D.C. in Spanish for instance, and Mono currently doesn't support translating this, we have

Re: [Mono-dev] GetAddrOf mono-basic vb.net

2007-05-06 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Jonathan Gilbert Sent: sábado, 05 de mayo de 2007 20:20 To: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] GetAddrOf mono-basic vb.net At 05:00 PM 5/4/2007 +0200, Rolf

Re: [Mono-dev] GetAddrOf mono-basic vb.net

2007-05-05 Thread Rolf Bjarne Kvinge
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of LB Audio Uchoa NET Sent: viernes, 04 de mayo de 2007 16:37 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] GetAddrOf mono-basic vb.net It is in VB6. Public Declare Function GetAddrOf Lib kernel32 Alias MulDiv (nNumber As

Re: [Mono-dev] Stubs for two missing methods in Managed.Windows.Forms

2007-04-24 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Leszek Ciesielski Sent: viernes, 20 de abril de 2007 19:51 To: mono-devel Subject: [Mono-dev] Stubs for two missing methods in Managed.Windows.Forms I am fiddling around trying to

Re: [Mono-dev] patch to start bonding navigator and masked textbox

2007-04-24 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: lunes, 23 de abril de 2007 23:31 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] patch to start bonding navigator and masked textbox Hi, I try

Re: [Mono-dev] No works application

2007-04-23 Thread Rolf Bjarne Kvinge
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of LB Audio Uchoa NET Sent: sábado, 21 de abril de 2007 3:29 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] No works application Here simple code...   More... problem is configuring mono in my new computer. In another computer

Re: [Mono-dev] Please Miguel de Icaza or other help-meMonoBasic+FMOD

2007-04-19 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of LB Audio Uchoa NET Sent: miércoles, 18 de abril de 2007 21:50 To: Kornél Pál; mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Please Miguel de Icaza or other help-

Re: [Mono-dev] Please Miguel de Icaza or other help-meMonoBasic+FMOD

2007-04-19 Thread Rolf Bjarne Kvinge
I am making exactly that. But I didn't still get to do to work in Linux. Do you can me to suggest a other Linux or OpenSuse 10.2 it is good? Any Linux version with Mono should do. If you posting the source with the problem (at least the declaration of the platform invoke function

Re: [Mono-dev] Please Miguel de Icaza or other help-me MonoBasic+FMOD

2007-04-19 Thread Rolf Bjarne Kvinge
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of LB Audio Uchoa NET Sent: jueves, 19 de abril de 2007 13:22 To: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Please Miguel de Icaza or other help-me MonoBasic+FMOD Code Error Only Click Button Play a sine wave: Could

Re: [Mono-dev] Please Miguel de Icaza or other help-me MonoBasic+FMOD

2007-04-18 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of LB Audio Uchoa NET Sent: miércoles, 18 de abril de 2007 18:10 To: Kornél Pál; mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Please Miguel de Icaza or other help-me

Re: [Mono-dev] [PATCH] Add VBC_VER and TARGET conditional constants and fix string comparsion

2007-02-27 Thread Rolf Bjarne Kvinge
-Original Message- From: Kornél Pál [mailto:[EMAIL PROTECTED] Sent: martes, 27 de febrero de 2007 1:36 To: Rolf Bjarne Kvinge Cc: mono-devel-list@lists.ximian.com Subject: [PATCH] Add VBC_VER and TARGET conditional constants and fix string comparsion Hi, See http://msdn2

Re: [Mono-dev] [PATCH] mono-basic version additions and fixes

2007-02-27 Thread Rolf Bjarne Kvinge
-Original Message- From: Miguel de Icaza [mailto:[EMAIL PROTECTED] Sent: martes, 27 de febrero de 2007 14:52 To: Rolf Bjarne Kvinge Cc: 'Kornél Pál'; mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] [PATCH] mono-basic version additions and fixes Hello Rolf, Mono

Re: [Mono-dev] [PATCH] mono-basic version additions and fixes

2007-02-26 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kornél Pál Sent: viernes, 23 de febrero de 2007 13:37 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] [PATCH] mono-basic version additions and fixes Hi, The attached patch add a Consts.vb file

Re: [Mono-dev] [PATCH] mono-basic version additions and fixes

2007-02-26 Thread Rolf Bjarne Kvinge
The attached patch add a Consts.vb file similar to Consts.cs in mcs tree. Version numbers are moved to there. I think that using the package version in vbnc is better so this patch modifies that as well. Note that I was unable to build vbnc using the Makefiles so I don't know if this patch

Re: [Mono-dev] Problem building rpm for mono-basic

2007-02-25 Thread Rolf Bjarne Kvinge
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Sent: domingo, 25 de febrero de 2007 1:26 To: mono-devel Subject: [Mono-dev] Problem building rpm for mono-basic Hi, I'm trying to build an rpm for mono-basic for inclusion into Fedora Extras. During

Re: [Mono-dev] I can't update mcs-svn

2006-12-13 Thread Rolf Bjarne Kvinge
I had to delete the tests directory in mcs (mcs/tests - remove the entire directory, not just the files within), then update again. There is probably a better solution, but this worked for me. Rolf -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hwang

Re: [Mono-dev] VBNC uses too much CPU and RAM on Mono

2006-11-01 Thread Rolf Bjarne Kvinge
Hello, Any help on speeding up vbnc is welcome. First I'd like to apoligize for leaving this unanswered for so many days, the problem was that my motherboard went up in smoke and I had to get a new computer :( It seems that the linked list for *all* files was kept for the *entire*

Re: [Mono-dev] VBNC uses too much CPU and RAM on Mono

2006-10-30 Thread Rolf Bjarne Kvinge
Hello, Are you using latest svn for vbnc? A few optimization was committed this week so it should be faster. If it is running out of memory though I think there might some other problem optimizations won't resolve. Rolf On Sun, 29 Oct 2006 19:21:07 +0100, Kornél Pál [EMAIL PROTECTED] wrote:

Re: [Mono-dev] A bug in the latest svn mcs?

2006-10-12 Thread Rolf Bjarne Kvinge
Hi, This was fixed yesterday, if you update your working copy now it should work. Rolf On Thu, 12 Oct 2006 10:03:09 +0200, Marek Habersack [EMAIL PROTECTED] wrote: Hello, Sometime after yesterday's commits I started to get this error while compiling mono: make[8]: Entering

Re: [Mono-dev] [Mono-list] Announce: Mono.Fuse 0.3.0

2006-09-12 Thread Rolf Bjarne Kvinge
Hi, The problem is that FUSE is a kernal module + library pair. To do the same on Windows, you'd need a Windows kernel driver, and you'd need the Windows kernel driver interface to support the FUSE operations. This means you'd have to have the Windows DDK, which IIRC costs money (as