Re: [Mono-docs-list] Downloadable Documentation?

2006-07-27 Thread William Uther
On 27/07/2006, at 8:44 PM, Jonathan Pryor wrote: On Thu, 2006-07-27 at 10:58 +1000, William Uther wrote: Where can I get a library reference that I can download? If you have Mono installed, you should already have the library reference installed. The documentation is within the

[Mono-winforms-list] Porting job

2006-07-27 Thread Jonas Beckeman
Hi all, I've followed mono's progression with great interest the last few years, but since I'm very MS-bound I haven't actually used it myself. Recently, I've been working on a couple of side projects that I would like to see running on mono, but I would need help to get started (in the

Re: [Mono-dev] [PATCH] System.Net.Sockets.TcpListener 2.0 Updates

2006-07-27 Thread Eyal Alaluf
Hi, all. The patch raises one issue for me - shouldn't we define 'NET_1_1' in 'NET_2_0' projects? There are a lot of '#if NET_1_1' scattered around in the code that I'd believe behave the same way in the context of 2.0 - they usually refer to functionality added in the .Net 1.1 release. Eyal.

Re: [Mono-dev] (no subject)

2006-07-27 Thread Andrew Skiba
Hi Robert, According to the code of the current ResolveUrl, it always returns an absolute path. However on dotnet, Page.ResolveUrl(aaa.jpg) returns aaa.jpg. So why we need ResolveClientUrl on 1.1, if ResolveUrl should return relative paths as well? I still don't understand, why .Net has 2

[Mono-dev] How to include an assembly in mono documentation?

2006-07-27 Thread Andrew Skiba
Hi. I want to add the documentation for the new test framework to the online Mono documentation. When I browse the documentation for Novel.Directory.Ldap, it looks that it was generated from XML comments. Code in mcs\class\System.Web.dotnet\Test\mainsoft\NunitWeb already has XML comments, what

[Mono-dev] ObjectDataSourceView/Type problem

2006-07-27 Thread Breno
Hi everyone,I am having a problem with the TypeName property of ObjectDataSource it is been used bound to a DropDownList and works fine under MS.NET, but when I try to run under Mono I get the folowing error:System.InvalidOperationException: Type not found: EnderecoHelper at

Re: [Mono-dev] ObjectDataSourceView/Type problem

2006-07-27 Thread Robert Jordan
Hey, I am having a problem with the TypeName property of ObjectDataSource it is been used bound to a DropDownList and works fine under MS.NET, but when I try to run under Mono I get the folowing error: System.InvalidOperationException: Type not found: EnderecoHelper at

Re: [Mono-dev] [PATCH] System.Net.Sockets.TcpListener 2.0 Updates

2006-07-27 Thread Miguel de Icaza
Hello, The patch raises one issue for me - shouldn't we define 'NET_1_1' in 'NET_2_0' projects? There are a lot of '#if NET_1_1' scattered around in the code that I'd believe behave the same way in the context of 2.0 - they usually refer to functionality added in the .Net 1.1 release. The

Re: [Mono-dev] Assembly.GetEntryAssembly() returns null

2006-07-27 Thread Miguel de Icaza
Hello, I've loaded assembly (compiled in VS.NET) in embedded environment. This assembly is supposed to work as a client for web service. However this does not work because Assembly.GetEntryAssembly returns null when called from managed code. This causes ConfigurationManager to throw

[Mono-dev] [PATCH] Use correct console code page on Windows (affects Linux as well)

2006-07-27 Thread Kornél Pál
Hi, I recently posted this patch: http://lists.ximian.com/pipermail/mono-devel-list/2006-July/019433.html But I received no comments and didn't think that this can cause problems on other OSes so I commited it: http://lists.ximian.com/pipermail/mono-patches/2006-July/077941.html This was later

Re: [Mono-dev] [PATCH] Use correct console code page on Windows (affects Linux as well)

2006-07-27 Thread Robert Jordan
Kornél Pál wrote: Hi, I recently posted this patch: http://lists.ximian.com/pipermail/mono-devel-list/2006-July/019433.html But I received no comments and didn't think that this can cause problems on other OSes so I commited it:

Re: [Mono-dev] [PATCH] Use correct console code page on Windows (affects Linux as well)

2006-07-27 Thread Zoltan Varga
Hi, I think this can be solved by moving the windows specific code to a separate method, marking it with [MethodImplAttribute (MethodImplOptions.NoInlining)] and calling it from inside the if (OnWindows) block. That way, the pinvoke lookups would not be executed on

[Mono-dev] PanelApplet issue

2006-07-27 Thread Tobias Schlitt
Hi all! Since the Gtk list seems pretty orphan to me, I take the liberty to post this issue here. Please be patient with me! I'm quite new to Mono, so please forgive me stupid errors. Thanks! My Problem relates to the PanelApplet class which I am using to write some Gnome panel applets. So far

Re: [Mono-dev] PanelApplet issue

2006-07-27 Thread Mike Kestner
On Thu, 2006-07-27 at 21:20 +0200, Tobias Schlitt wrote: Hi all! Since the Gtk list seems pretty orphan to me, I take the liberty to post this issue here. Please be patient with me! You might want to wait more than 10 hours before you start cross-posting next time. I've responded to your

Re: [Mono-dev] PanelApplet issue

2006-07-27 Thread Tobias Schlitt
On 07/27/2006 09:46 PM Mike Kestner wrote: On Thu, 2006-07-27 at 21:20 +0200, Tobias Schlitt wrote: Since the Gtk list seems pretty orphan to me, I take the liberty to post this issue here. Please be patient with me! You might want to wait more than 10 hours before you start cross-posting

Re: [Mono-dev] [PATCH] Use correct console code page on Windows (affects Linux as well)

2006-07-27 Thread Miguel de Icaza
Hello, As for advapi32.dll and ole32.dll I don't think that these hints are caused by my modifications. This was caused because the P/Invoke libraries are listed as external modules. The following patch fixes this, it avoids this by not loading any external modules that are listed as

Re: [Mono-dev] [PATCH] Use correct console code page on Windows (affects Linux as well)

2006-07-27 Thread Zoltan Varga
It looks ok to me. Zoltan On 7/27/06, Miguel de Icaza [EMAIL PROTECTED] wrote: Hello, As for advapi32.dll and ole32.dll I don't think that these hints are caused by my modifications. This was caused because the P/Invoke libraries are listed as external modules. The following patch

Re: [Mono-dev] [PATCH] Use correct console code page on Windows (affects Linux as well)

2006-07-27 Thread Kornél Pál
Hi, Now that module loading was patched is it OK to reapply the original patch or do you have any suggestions regarding the code? Kornél - Original Message - From: Zoltan Varga [EMAIL PROTECTED] To: Miguel de Icaza [EMAIL PROTECTED] Cc: Kornél Pál [EMAIL PROTECTED];

[Mono-dev] Adding a new opcode - bis

2006-07-27 Thread Denis ERCHOFF
Hi, I want to add a new opcode ( for educational purpose ) and i have some questions. Hi, I resend this email because previously i did a reply on a precedent email ( by lazyless, to do not look for the mailing list address in my contacts folder ), and i saw that my ask was lost in another

Re: [Mono-list] ASP.NET and Licensing

2006-07-27 Thread Kornél Pál
Hi, If you don't want to use ASP.NET and/or System.Windows.Form it's up to you but note that the fact that there is a closed source implementation of them (i.e. Microsoft .NET Framewrok) doesn't mean that you should avoid their open source implementations (i.e. Mono or Portable.NET, IMHO Mono

[Mono-list] Mono VMWare Image available for download

2006-07-27 Thread Wade Berrier
Hi, We have a VMWare image available for download running SLED10 and Mono 1.1.16.1. Grab it here: http://www.mono-project.com/Downloads Because the file is 1GB, we're using BitTorrent to serve up the file. Enjoy! Wade signature.asc Description: This is a digitally signed message part

Re: [Mono-list] ASP.NET and Licensing

2006-07-27 Thread einKI.ml
Hi If you don't want to use ASP.NET and/or System.Windows.Form it's up to you but note that the fact that there is a closed source implementation of them (i.e. Microsoft .NET Framewrok) doesn't mean that you should avoid their open source implementations (i.e. Mono or Portable.NET, IMHO

[Mono-list] Composite Control in Code-Behind

2006-07-27 Thread Mats Nilsson
Hi, Is there someone who could help me with a problem using the FormView control in Mono. I´m trying to create a composite control containing a FormView. I have created the composite control an tested i in a declared environment. In other words putted in an .aspx page file. It works fine with

Re: [Mono-list] ASP.NET and Licensing

2006-07-27 Thread Alex Nedelcu
ASP.NET is quite a controversial piece of the .NET framework. ADO.NET is another controversial library, that has no replacement. As Thomas Jefferson said ... the price of freedom is eternal vigilance. Why can't we just stick with the ECMA standards and create true open-source alternatives for the

Re: [Mono-list] ASP.NET and Licensing

2006-07-27 Thread Michael Schurter
Alex Nedelcu wrote: ASP.NET is quite a controversial piece of the .NET framework. ADO.NET is another controversial library, that has no replacement. As Thomas Jefferson said ... the price of freedom is eternal vigilance. Why can't we just stick with the ECMA standards and create true