[Mono-list] System.Web/System.Web - patch (code synchronization between Mono and Mainsoft)

2005-06-07 Thread Svetlana Zholkovsky
Hi, All! Due to Mainsoft's internal rejects - I'll provide new version of System.Web namespace changes. Please ignore previous patch. Thanks, Svetlana. ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/m

[Mono-list] System.Windows.Forms not working

2005-06-07 Thread Matthias Felgner
Hi I can't figure out what my problem is here...I am running Gentoo Linux, mono from svn... System.Windows.Forms used to work, now it doesn't anymoreWhich dll is missing? Somebody please help... This is the output... Mono System.Windows.Forms Assembly [Revision: 44786; built: 2005/5/25 22:3

Re: [Mono-list] System.Windows.Forms not working

2005-06-07 Thread Paul Johnson
Hi, > Mono System.Windows.Forms Assembly [Revision: 44786; built: 2005/5/25 > 22:34:45] That's quite old. Have you done a fresh checkout and build and seen if the problem still exists? TTFN Paul -- "He's not the Messiah, he's a very naughty boy" - Life of Brian, Monty Python _

Re: [Mono-list] Running mono app from cron job?

2005-06-07 Thread Rafael Ferreira
most likely cron can't find mono. I suggest doing something like this 0,15,30,45 * * * * /usr/local/bin/mono /root/scripts/WatchSite.exe or just making a bash script out of it and running that instead On Mon, 2005-06-06 at 18:50 -0700, Eric Damron wrote: > I'm hoping some of you have started mo

AW: [Mono-list] System.Windows.Forms not working

2005-06-07 Thread Matthias Felgner
Hello I have latest SVN Version... String is hardcoded in mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUI.cs Console.WriteLine("Mono System.Windows.Forms Assembly [Revision: 44786; built: 2005/5/25 22:34:45]"); --Matt -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [m

RE: [Mono-list] Npgsql.dll

2005-06-07 Thread Chris Aitken
> It's me again, back to try and write some SPROC. I want to > try the second method (PL/PgSQL), but I'm assuming you get > back two arrays each with the same index, one for the > customername and one for the postcode. Is that how you > capture the returned data in a dataset? > Hi Carl, If

RE: [Mono-list] Npgsql.dll

2005-06-07 Thread Chris Aitken
> It's me again, back to try and write some SPROC. I want to > try the second method (PL/PgSQL), but I'm assuming you get > back two arrays each with the same index, one for the > customername and one for the postcode. Is that how you > capture the returned data in a dataset? > Hi Carl, If

RE: [Mono-list] Npgsql.dll

2005-06-07 Thread Chris Aitken
> It's me again, back to try and write some SPROC. I want to > try the second method (PL/PgSQL), but I'm assuming you get > back two arrays each with the same index, one for the > customername and one for the postcode. Is that how you > capture the returned data in a dataset? > Hi Carl, If

Re: [Mono-list] Npgsql

2005-06-07 Thread Francisco Figueiredo Jr.
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Carl Olsen wrote: > Okay, I removed the reference in the Global.asax.cs file to the assemblies > that have not been completed yet, and the web site is back up and > functioning again. My next step is to convert about 20 to 30 stored > procedures from

[Mono-list] DataSet.ReadXml Differences between Mono & .NET

2005-06-07 Thread Matthew Franz
Running mono 1.1.4 (Ubuntu) and .NET 1.1.4322   If I read a well-formed XML document and try to import it into the DataSet (not specifying a schema)   Something like...                               In the bar table, mono is creating a "bar_Id" column whe

Re: [Mono-list] RE: Mono-list Digest, Vol 2, Issue 3

2005-06-07 Thread Joshua Tauberer
BMC Jonathan McCullagh wrote: However, when I try to load an aspx page at one of my vhosts I still get: Not Found The requested document was not found on this server. You need to tell mod_mono about each 'http path' that maps to a path on your server. So for each virtual host, you need to ma

[Mono-list] System.Configuration.ConfigurationException

2005-06-07 Thread Gyanit Singh
Hello, I am working on the poject on Mono and have got these two exceptions System.Configuration.ConfigurationException: The `indentsize' attribute must be an integral value. (/usr/local/etc/mono/machine.config line 1) ---> System.NotImplementedException: The requested feature is not implemented

[Mono-list] System.Net.FtpWebRequest Development

2005-06-07 Thread Martin Hinks
Hi all - my first post to Mono lists! After checking the class status pages I noticed that compared to FX 2.0 there has been no work done on the System.Net.FtpWebRequest. I have started to develop this now and had a few q's: 1.) At what stage should I post my current progress? Should I post bits

[Mono-list] Javascript eval() function in c#

2005-06-07 Thread Alek Storm
This function evaluates mathematical expressions. Currently it only does addition, subtraction, multiplication, division, and exponents, but can be easily extended. It's meant to work like the Javascript eval() function. Please let me know if you find it useful. eval.tar.gz Description: GNU

Re: [Mono-list] Javascript eval() function in c#

2005-06-07 Thread Kornél Pál
This function evaluates mathematical expressions. Currently it only does addition, subtraction, multiplication, division, and exponents, but can be easily extended. It's meant to work like the Javascript eval() function. Please let me know if you find it useful. eval() is supported in .NET Fr

Re: [Mono-list] Javascript eval() function in c#

2005-06-07 Thread Alek Storm
On 6/7/05, Kornél Pál <[EMAIL PROTECTED]> wrote: > >This function evaluates mathematical expressions. Currently it > >only does addition, subtraction, multiplication, division, and > >exponents, but can be easily extended. It's meant to work like the > >Javascript eval() function. Please let me

Re: [Mono-list] Javascript eval() function in c#

2005-06-07 Thread Martin Hinks
I think it's a good idea - very useful when you want the end user to be able to enter their own mathematical expressions to have a pre-built parser and evaluator. There's an interesting article on the topic (and a full implementation (in VB.NET)) at http://www.codeproject.com/vb/net/math_expressio

Re: [Mono-list] Javascript eval() function in c#

2005-06-07 Thread Kornél Pál
Ah. I thought Javascript eval() only did mathemeatical expressions. I guess it would be kind of lofty for me to say it emulated Javascript eval(), then. But yes, it does do mathematical expressions. Implementing a mathematical expression evaluator is good but it is wasting of time to implement

Re: AW: [Mono-list] System.Windows.Forms not working

2005-06-07 Thread Paul
Hi, > String is hardcoded in > mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUI.cs > > Console.WriteLine("Mono System.Windows.Forms Assembly [Revision: 44786; > built: 2005/5/25 22:34:45]"); What code caused the error to be generated? TTFN Paul -- "Space", it says, "is big. Real

[Mono-list] ClickOnce?

2005-06-07 Thread Dave Comer
Are there plans to incorporate "ClickOnce" technology into Mono? TIA, Dave ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list