Re: [Mono-list] Mono 0.28 - Still fails under windows 2000 P

2003-10-05 Thread Varga Zoltan
Hi, Could somebody who is experiencing this problem run the attached test program and send me the results ? thanks Zoltan Paul Paximadis <[EMAIL PROTECTED]> írta: > I have just installed late

Re: [Mono-list] Mono 0.28 - Still fails under windows 2000 P

2003-10-05 Thread Atsushi Eno
Hello, After applying attached patch, this problem looks gone away. But I don't know it might break this method. Atsushi Eno Index: icall.c === RCS file: /cvs/public/mono/mono/metadata/icall.c,v retrieving revision 1.339 diff -u -r1

[Mono-list] resyncing code

2003-10-05 Thread Reggie Burnett
Trying to resync my driver code with Mono and I had a couple questions: 1. After updating the ByteFX.Data.dll.sources file, issuing make from my folder gives:  ../../build/deps/ByteFX.Data.dll.makefrag:38: *** missing separator. Stop.  2. My provider includes SWF dialogs and bitmap resources for

[Mono-list] Modify XML Docs

2003-10-05 Thread Pablo Fischer
Hi! Im creating an app (mBloggy, to post 'posts' to a blog), however I'm going to use a xml file to save the user configuration (the blogs). Today I can write (JUST new files), read it and identify some parts, but I dont undestand what the inet says about modifying xml files, so How can I modify a

Re: [Mono-list] resyncing code

2003-10-05 Thread Gonzalo Paniagua Javier
El dom, 05-10-2003 a las 17:12, Reggie Burnett escribió: > Trying to resync my driver code with Mono and I had a couple questions: > > 1. After updating the ByteFX.Data.dll.sources file, issuing make from my > folder gives: ../../build/deps/ByteFX.Data.dll.makefrag:38: *** missing > separator. St

RE: [Mono-list] resyncing code

2003-10-05 Thread Reggie Burnett
I haven't tried to do a cvs up. I edited the .sources file and added the new files that are in the project. There may be files in the folders that should not be included. I have deleted the makefrag file and now it is telling me there are no rules for making a .stamp file. Reggie > -Ori

Re: [Mono-list] Modify XML Docs

2003-10-05 Thread Martin Willemoes Hansen
On Sun, 2003-10-05 at 20:04, Pablo Fischer wrote: Hi! Im creating an app (mBloggy, to post 'posts' to a blog), however I'm going to use a xml file to save the user configuration (the blogs). Today I can write (JUST new files), read it and identify some parts, but I dont undestand what the ine

Re: [Mono-list] Modify XML Docs

2003-10-05 Thread Pablo Fischer
El dom, 05-10-2003 a las 13:28, Martin Willemoes Hansen escribió: > Will it be free software I can download some day? .. Im looking for > some good bloging software you see. Of course it will be free!, I think im in the 80% of the app, Im just in the 'user configuration' part and the 'format text'

Re: [Mono-list] Modify XML Docs

2003-10-05 Thread Miguel de Icaza
Hello, > Im creating an app (mBloggy, to post 'posts' to a blog), however I'm > going to use a xml file to save the user configuration (the blogs). > Today I can write (JUST new files), read it and identify some parts, but > I dont undestand what the inet says about modifying xml files, so How > c

Re: [Mono-list] Modify XML Docs

2003-10-05 Thread Pablo Fischer
Hello Miguel! Well Im creating something like that, cause I'm loading the xmlfile (LoadConfigFile) in a struct like this: private struct ConfigInfo { string username; string password; string url; string identifier; } So if the file exists I 'load' the file in

Re: [Mono-list] Mono 0.28 - Still fails under windows 2000 P

2003-10-05 Thread Varga Zoltan
Hi, I checked in a fix for these problems. I hope it is is correct. I tested it by setting the timezone to GMT (i.e. no dayling saving). The patch is the following: <<< Index: icall.c ===

Re: [Mono-list] Mono 0.28 - Still fails under windows 2000 P

2003-10-05 Thread Atsushi Eno
Varga Zoltan wrote: > Could somebody who is actually seeing this problem test it > and see > if it fixes the problem? If it is, then we can make a new > windows release > with only this patch. It looks fine for me. Thanks for fixing it. Atsushi Eno __

Re: [Mono-list] Modify XML Docs

2003-10-05 Thread Ben Maurer
On Sun, 2003-10-05 at 14:52, Pablo Fischer wrote: > Hello Miguel! > > Well Im creating something like that, cause I'm loading the xmlfile > (LoadConfigFile) in a struct like this: > > private struct ConfigInfo { > string username; > string password; > string url; > strin

Re: [Mono-list] Modify XML Docs

2003-10-05 Thread Pablo Fischer
Hi! Ok, I'll check the xml serialization, however the configuration NEEDS to be saved in a file, not in 'the fly', so every change to the accounts needs to be saved to the file (and then to the array, an array list or a struct array). Thanks! El dom, 05-10-2003 a las 14:44, Ben Maurer escribió: >

Re: [Mono-list] Modify XML Docs (part 2)

2003-10-05 Thread Pablo Fischer
Uhm.. After sending the last reply I think in that option.. 1. Load the xml file like you and Miguel says 2. Work in the array list with add/remove 3. After closing the app (delete_event), creates the new xml file Is it a good idea? Thanks! El dom, 05-10-2003 a las 14:44, Ben Maurer escribió:

[Mono-list] Question about run Nunit test suites with nunit-console.exe

2003-10-05 Thread [EMAIL PROTECTED]
Hello: A little question about nunit-console.exe in linux. i have a nunit test suite that have some configuration params stored in a config file (PostgreSql.Data.PgSqlClient.UnitTests.dll.config) the parameters are accessed using ConfigurationSettings.AppSettings["xxx"] this works nice in windows

[Mono-list] ByteFX updated in cvs

2003-10-05 Thread Reggie Burnett
Everyone I have synced up my Mysql ADO.Net provider code with Mono.  It is the latest code and did undergo some significant changes lately to support LOCAL DATA INFILE and correct some pooling problems.  I haven’t released this code yet as a build so buggers could lurk. Reggie _

Re: [Mono-list] Question about run Nunit test suites with nunit-console.exe

2003-10-05 Thread Gonzalo Paniagua Javier
El dom, 05-10-2003 a las 23:52, [EMAIL PROTECTED] escribió: > Hello: > > A little question about nunit-console.exe in linux. > i have a nunit test suite that have some configuration params stored in > a config file (PostgreSql.Data.PgSqlClient.UnitTests.dll.config) the > parameters are accessed us

Re: [Mono-list] Modify XML Docs

2003-10-05 Thread Miguel de Icaza
Hello, > Well Im creating something like that, cause I'm loading the xmlfile > (LoadConfigFile) in a struct like this: > > private struct ConfigInfo { > string username; > string password; > string url; > string identifier; > } > > So if the file exists I 'load' the f

Re: [Mono-list] Modify XML Docs

2003-10-05 Thread Pablo Fischer
Hi! Yeah, I didnt know that, now I'm using two classes, arraylist (in one class) and the XmlSerializer and I can add, remove and modify accounts. And everytime the user want's to exit from mBloggy the XmlSerializer will update the XmlFile. Thanks! El dom, 05-10-2003 a las 19:30, Miguel de Icaza e

RE: [Mono-list] Mono 0.28 - Still fails under windows 2000 P

2003-10-05 Thread Paul Paximadis
I tried setting my TimeZone setting to something else and the program compiled fine and run fine. I changed it from "(GMT+02:00) Harare, Pretoria" to "(GMT+02:00) Cairo" and everything works fine. This worked with "Automatically adjust clock for daylight savings changes" checked or not. I then