Re: [Mono-dev] Bug in DataGridView.ScrollBars

2009-02-23 Thread Ivan N. Zlatev
2009/2/20 Marcelo Marques Inacio marceloina...@hotmail.com: Dear friends developers. The property ScrollBars.Vertical or ScrollBars.Horizontal in the DataGridView control is not working properly. The horizontal and vertical bar is always visible. Attached the following changes to correct

Re: [Mono-dev] Bug in DataGridView.ScrollBars

2009-02-23 Thread Petit Eric
2009/2/23 Ivan N. Zlatev cont...@i-nz.net: 2009/2/20 Marcelo Marques Inacio marceloina...@hotmail.com: Dear friends developers. The property ScrollBars.Vertical or ScrollBars.Horizontal in the DataGridView control is not working properly. The horizontal and vertical bar is always visible.

Re: [Mono-dev] misc: C# request info

2009-02-23 Thread Marek Safar
Hi, well, I was looking into C# some, and admittedly I have much less fammiliarity with the language than with others... (I have started looking at ECMA-334 some, but it is long and a little awkward to answer specific questions from absent some digging...). so, firstly, it is my guess

Re: [Mono-dev] Mono.SIMD

2009-02-23 Thread Alan McGovern
Hey, The big issue you're having is that you haven't implemented a SIMD algorithm ;) I spent 15 mins 'optimising' your code and came up with this. Notice that I made everything a SIMD operation. There is no scalar code in the method anymore. This tripled performance as compared to the non-SIMD

Re: [Mono-dev] Unable to call methods on managed objects while running Mono on the iPhone

2009-02-23 Thread Zoltan Varga
Hi, You have to compile your AOT code using --aot=full, and run the runtime using the --full-aot option. When embedding, the later can be achieved by setting the mono_aot_only variable to TRUE _before_ calling mono_jit_init (). Zoltan On Mon, Feb 23, 2009 at 6:07 AM, mobbe

Re: [Mono-dev] Making your own programming language for mono

2009-02-23 Thread Jérémie Laval
Hey, There are already several existing tools you may use like Irony (grammar and parser framework) and the DLR (turning AST into running programs). Both are on CodePlex if you want the code. That's the two I used to get a minimal implementation of Scheme running on Mono. -- Jérémie Laval

Re: [Mono-dev] Mono.SIMD

2009-02-23 Thread Alan McGovern
Hey, The C++ code seems very similar to the C# SIMD code, so I don't know what would make the C# version any faster. This question would be best directed at jit guys, who may know what causes the difference. If you want to try speeding up the mono version, you should just use trial and error to

Re: [Mono-dev] Unable to call methods on managed objects while running Mono on the iPhone

2009-02-23 Thread Peter Moberg
Hi, got it to work! I forgot that I had to undefine the HAVE_MMAP. Seems like that call doesn't work (but doesn't complain either) on the iPhone. After doing that I was able to call the ToString on the Exception class and retrieve the string back just fine! On Feb 23, 2009, at 5:12 AM,

Re: [Mono-dev] Help about how to start?

2009-02-23 Thread Jonathan Pryor
On Wed, 2009-02-11 at 08:28 -0800, shweta123 wrote: I wish to contribute the project as a developer. But I don't know how can I help. So please let me know how can I understand the project? This should be a good start: http://www.mono-project.com/Contributing The larger

Re: [Mono-dev] Developing using Mono/Gtk# Vs Mono.WinForms (Windows Linux)

2009-02-23 Thread Jonathan Pryor
On Fri, 2009-02-13 at 16:57 +0100, Chris Hills wrote: Tom Opgenorth wrote: What could be better to use Gtk# or Winforms? The rule of thumb would use: if the majority of users are Windows, use WinForms. If Linux, use GTK#. Of course, this is assuming that you're equally skilled in both.

Re: [Mono-dev] Patch: Ternary ops in mini and general ATOMIC_CAS

2009-02-23 Thread Zoltan Varga
Hi, My problems with this patch, and with adding support for ternary ops in general: - it increases the size of MonoInst by 4/8 bytes. - it slows down every phase of the JIT by changing linear code into loops, ie. instead of process sreg1 process sreg2 it is now a loop with an unknown upper

Re: [Mono-dev] misc: C# request info

2009-02-23 Thread BGB
- Original Message - From: Marek Safar marek.sa...@seznam.cz To: BGB cr88...@hotmail.com Cc: mono-devel-list@lists.ximian.com Sent: Monday, February 23, 2009 7:56 PM Subject: Re: [Mono-dev] misc: C# request info Hi, well, I was looking into C# some, and admittedly I have much less

[Mono-dev] SVN upgraded to subversion 1.5.x

2009-02-23 Thread Gonzalo Paniagua Javier
The Mono SVN server at mono-cvs.ximian.com has been upgraded to Subversion 1.5.x. That means that if you have a 1.5.x client you will finally be able to enjoy merge tracking, sparse checkouts, changelists... See http://subversion.tigris.org/svn_1.5_releasenotes.html for the complete list of new

[Mono-dev] I can not use beagle which is based on mono

2009-02-23 Thread waterloo
I use mono 2.2-r3. I can not use beagle which is based on mono in gentoo. when I run beagle --fg --debug, it will halt and exit after a while. it displays: Debug: Delaying add of file:///media/bak/oo/FILE/??n?¤ì???·.chm until FSQ comes across it **

Re: [Mono-dev] Mono is losing session when cookieless=true

2009-02-23 Thread Gonzalo Paniagua Javier
On Thu, 2009-02-12 at 12:13 -0800, MonoMichal wrote: Hi, I have a problem, I need to use cookieless session. It works very good on my windows machine (Windows XP 5.1 Build 2600, IIS 5.1), I experience no issues. However when I migrate my project to mono server, mono is losing session. I

Re: [Mono-dev] XML validation : xsi:nil attribute ignored

2009-02-23 Thread Atsushi Eno
Hello, Sorry for the late reply. I haven't read this message until now. It's already fixed in svn at some stage. Atsushi Eno yproust wrote: Hi I am trying to validate XML with an XSD schema, but it seems that the xsi:nil attributes are ignored. As the element must be a dateTime,