Re: [fpc-devel] XML and encoding problems

2006-04-25 Thread Alexander Todorov
On 4/23/06, Bogusław Brandys [EMAIL PROTECTED] wrote: Result printed on console are not sufficient.Compare binary chunks, C:\fc -B save.txt.windows save.txt.linux Comparing files save.txt.windows and save.txt.linux 0005: 3F D0 0006: 3F A2 0007: 3F D0 0008: 3F B8 0009: 4E D1

Re: [fpc-devel] XML and encoding problems

2006-04-25 Thread Alexander Todorov
This may be relevant: http://www.freepascal.org/bugs/showrec.php3?ID=3434 ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-devel

[fpc-devel] help on cgiapp unit

2006-04-25 Thread Graeme Geldenhuys
Hi, Is there any help / documentation on the cgiapp.pp unit? I want to know when to use things like AddResponseLn() compared to Writeln() etc. for generating html pages. I am trying to convert a GUI application (with a DB backend) to a web based application. I am starting with the login screen

[fpc-devel] Bug 5049: Record insert at eof in TSQLQuery

2006-04-25 Thread Martin Schreiber
More exact formulation: TSQLQuery.Last; TSQLQuery.Insert; TSQLQuery.Post; The new record is not the last record. It is at the same position as if TSQLQuery.Last; TSQLQuery.Prior; TSQLQuery.Insert; TSQLQuery.Post; Martin ___ fpc-devel maillist -

Re: [fpc-devel] Bug 5049: Record insert at eof in TSQLQuery

2006-04-25 Thread Michael Van Canneyt
On Tue, 25 Apr 2006, Martin Schreiber wrote: More exact formulation: TSQLQuery.Last; TSQLQuery.Insert; TSQLQuery.Post; The new record is not the last record. That is correct. It should be the last-but-one. Michael. ___ fpc-devel maillist -

Re: [fpc-devel] Bug 5049: Record insert at eof in TSQLQuery

2006-04-25 Thread Martin Schreiber
On Tuesday 25 April 2006 17.20, Michael Van Canneyt wrote: On Tue, 25 Apr 2006, Martin Schreiber wrote: More exact formulation: TSQLQuery.Last; TSQLQuery.Insert; TSQLQuery.Post; The new record is not the last record. That is correct. It should be the last-but-one. It seems there

Re: [fpc-devel] Bug 5049: Record insert at eof in TSQLQuery

2006-04-25 Thread Joost van der Sluis
On Tue, 2006-04-25 at 18:45 +0200, Martin Schreiber wrote: On Tuesday 25 April 2006 17.20, Michael Van Canneyt wrote: On Tue, 25 Apr 2006, Martin Schreiber wrote: More exact formulation: TSQLQuery.Last; TSQLQuery.Insert; TSQLQuery.Post; The new record is not the last