[Mono-winforms-list] puedo utilizar windows forms en Linux??

2007-07-06 Thread Paco Orts
Hola : Estoy haciendo un proyecto en .NET, y es un proyecto del windows Forms. Me gustaria que me dijerais que programas tengo que instalar en mi Linux, para poder ejecutar el programita. Muchas Gracies PACO ___ Mono-winforms-list maillist -

Re: [Mono-winforms-list] puedo utilizar windows forms en Linux??

2007-07-06 Thread Rolf Bjarne Kvinge
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paco Orts Sent: miércoles, 04 de julio de 2007 13:13 To: mono-winforms-list@lists.ximian.com Subject: [Mono-winforms-list] puedo utilizar windows forms en Linux?? Hola : Estoy haciendo un proyecto en .NET, y es un proyecto del

[Mono-dev] MCS and GMCS API Documentation

2007-07-06 Thread Sachith M . D .
Dear Mono Team Member/Developer, I am working on a Code Optimization project where I have to parse C# source file(s) and consequently build the CodeDOM tree of the code and find all the redundant classes/methods in the code. I already performed the same analysis on Assembly files but

[Mono-dev] [Patch] fix for #82022

2007-07-06 Thread Rodrigo Kumpera
Hey guys, The attached patch fixes #82022. The fix is quite simple, it just checks if the enum field is null and abort the loading process. But there are two issues with this patch, first it could return a more informative message about the problem and I'm not sure if it won't leak memory or

Re: [Mono-dev] Regression Tests Webpage

2007-07-06 Thread Miguel de Icaza
My goal with the scripts is to publish (most likely on the wine website) a comparison of mono running the tests on windows and mono running the tests under wine on linux as a way to see areas wine might be lacking. There has been some talk about running the testsuite against MS .Net.

Re: [Mono-dev] SerialPort - no timeouts on write

2007-07-06 Thread Miguel de Icaza
Hey, bug http://bugzilla.ximian.com/show_bug.cgi?id=81967 now has a patch attached that causes SerialPort to correctly timeout on writes. It has been tested quite extensively on Windows, Linux kernel 2.6 and 2.4. The scope of the changes is quite big, so I'd appreciate a little review.

[Mono-dev] library to generate XAML ?

2007-07-06 Thread dave
is there any c/c++ linux library(on the lines of graphviz) to generate XAML? I am planning to use SilverLight plugin on windows client to render the XAML. Currently, I generate SVG on my linux based web server. I am looking for either SVG to XAML converter OR a library that can generate XAML.

[Mono-dev] Low level file access

2007-07-06 Thread pablosantosluac
Hi, What should I use to access files (write, set time, set readonly or not, and so on) at low level using Handles or file descriptors? Is it compatible with Win32? Thanks, pablo ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

[Mono-list] mod-mono-server2 with threadpool does not correct threadstatic

2007-07-06 Thread Adriaan van Kekem
Hi, I have a mono application running with mod_mono on mono 1.2.4. I have created somewhere in my webapp a threadstatic variable, actually a generic stack with specific objects. No i am running my webapp, and seeing my log file, i see that sometimes the same thread is reused later. This is

Re: [Mono-list] Forms Authentication in ASP.Net

2007-07-06 Thread Adriaan van Kekem
Hi, Which webserver are u running? It seems that you have running the mono handler on all type of files. In apache you have configure it with SetHandler mono, so all files are handled. If it's allowed to download those files, you can give anonymous rights to that files in your web.config:

Re: [Mono-list] mod-mono-server2 with threadpool does not correct threadstatic

2007-07-06 Thread Robert Jordan
Adriaan van Kekem wrote: Hi, I have a mono application running with mod_mono on mono 1.2.4. I have created somewhere in my webapp a threadstatic variable, actually a generic stack with specific objects. No i am running my webapp, and seeing my log file, i see that sometimes the same thread

Re: [Mono-list] mod-mono-server2 with threadpool does not correct threadstatic

2007-07-06 Thread Michał Ziemski
Hi! If you want your variable reset after each request why delare it static? Pleas give some further details about what are you trying to accomplish, then maybe someone can point you to other solution. Cheers! Michał Ziemski Adriaan van Kekem pisze: Hi, So, is there a possibility to solve

Re: [Mono-list] mod-mono-server2 with threadpool does not correct threadstatic

2007-07-06 Thread Adriaan van Kekem
Hi, ok, great, it's better to explain why ;-) I have implemented a scenario with using statement. So, i have created a context object which is saved in your session. But it's possible to define a sub-context, for a systemaccount to do some tasks. After the task has been done, you revert to your

Re: [Mono-list] mod-mono-server2 with threadpool does not correct threadstatic

2007-07-06 Thread Adriaan van Kekem
Hi, So, is there a possibility to solve this problem without manually clearing the stack by each new request in the global.asax? or is there no standard way to solve this problem? greetings, Adriaan Robert Jordan wrote: Adriaan van Kekem wrote: Hi, I have a mono application running

[Mono-list] Oracle Connection

2007-07-06 Thread Gustavo Ribeiro De Bonis
Hi, i'm new to linux and mono, i'm trying to do my home work on linux and mono. I need to develop a simple software that just connects to a database made in oracle (10g), but it can't connects to oracle server (running on local machine), and everytime i receive this error: Unhandled

Re: [Mono-list] Problem with gecko-sharp and sample applications

2007-07-06 Thread Marcin Zajączkowski
On 2007-07-03 13:18, Marcin Zajączkowski wrote: Hi, I'm unable to run sample applications for gecko-sharp. It gets SIGSEGV (stack trace below - if it needed I probably could add some debug symbols for it). Guys, I don't believe that anyone didn't use it. If someone, please let me know

[Mono-list] Windows.Forms not found

2007-07-06 Thread Mladen Bestvina
Hello! The compilation of the code below fails, apparently because Windows.Forms cannot be found on the system. I do have Windows.Forms.dll. I am using Ubuntu Feisty Fawn and I installed mono from ubuntu packages. Any advice is appreciated. Mladen = [EMAIL

Re: [Mono-list] beginner trying to create a application

2007-07-06 Thread choclatboy
TeamChaos wrote: that all works perverctly when running from monodevelop or even in linux. but swifting to windows... (i don't have mac yet). it puts me a error saying it can't find and by that load the gtk-sharp assembly (version 2.10). i thought that is installed with the mono windows

Re: [Mono-list] Windows.Forms not found

2007-07-06 Thread Maser, Dan
You need to add the reference to System.Windows.Forms just like you did System.Drawing. Such as mcs -r:System.Drawing -r:System.Windows.Forms sample.cs -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mladen Bestvina Sent: Monday, July 02, 2007 4:51

Re: [Mono-list] Oracle Connection

2007-07-06 Thread Amc Gmail
sorry, i forgot small things. most likely your $ORACLE_HOME/lib has libclntsh.so.10.1 but mono looking for libclntsh.so and cann't handle version number. so, in my case i simply using ln -s like this: ln -s /home/my_home/oracle_client/libclntsh.so /home/my_home/oracle_client/libclntsh.so.10.1 or

[Mono-list] ANNOUNCE: Mono.Addins 0.2

2007-07-06 Thread Lluis Sanchez
Hi, I'm pleased to announce the release of Mono.Addins 0.2. Mono.Addins is a generic framework for creating extensible applications, and for creating libraries which extend those applications. The 0.2 release comes with many bug fixes and some improvements and new features: * Assemblies

Re: [Mono-list] Windows.Forms not found

2007-07-06 Thread Maser, Dan
I checked my machine and I have the .dll extension in my command line -r:System.Window.Forms.dll If adding the .dll to your example doesn't work then I'm out of ideas :) -Original Message- From: Mladen Bestvina [mailto:[EMAIL PROTECTED] Sent: Friday, July 06, 2007 11:16 AM To:

Re: [Mono-list] Windows.Forms not found

2007-07-06 Thread Maser, Dan
My guess is that there's a problem with your mono installation. Here are things to check: 1. My mono is installed in /usr/local/lib/mono. Is the path /usr/local/lib in your /etc/ld.so.conf file or your user $LD_LIBRARY_PATH variable? 2. I have the System.Windows.Forms.dll in a few places

Re: [Mono-list] Windows.Forms not found

2007-07-06 Thread Andy Hume
You need to add the reference to System.Windows.Forms just like you did System.Drawing. Such as mcs -r:System.Drawing -r:System.Windows.Forms sample.cs Or instead just use -pkg:dotnet. See e.g. http://www.mono-project.com/WinForms_Getting_Started_Guide Andy

[Mono-list] missing assembly!?!

2007-07-06 Thread Brian Chan
Hi all, I am trying to create a monorail project to be run using mono. But whenever I try to run the app I get the following error: [EMAIL PROTECTED] /home/httpd/html/test# xsp2 xsp2 Listening on port: 8080 (non-secure) Listening on address: 0.0.0.0 Root directory: /home/httpd/html/test