Re: [fpc-pascal] Spreadsheet library/unit?

2008-10-05 Thread Frank Peelo
Antal wrote: You might use the CSV, which can be easily open with Office and to generate by your application. I am using this way to handle data to/from excel It is a plain text file, each row is separated with CRLF (#13#10), each cell separated with tab (#9) errm, surely that should be a com

Re: [fpc-pascal] Spreadsheet library/unit?

2008-10-05 Thread Gustavo Enrique Jimenez
2008/10/4 Antal <[EMAIL PROTECTED]>: > You might use the CSV, which can be easily open with Office and to generate > by your application. > I am using this way to handle data to/from excel > It is a plain text file, each row is separated with CRLF (#13#10), each cell > separated with tab (#9) > Als

Re: [fpc-pascal] Spreadsheet library/unit?

2008-10-05 Thread Michael Van Canneyt
On Sat, 4 Oct 2008, Francisco Reyes wrote: > Searched, but could not find, a library/unit for creating spreadsheets. > XLS, open doc.. or anything that would allow to create spreadsheet tabs to > later on open with Excel. > > Trying to see if there is one before trying to create one. If buying

Re: [fpc-pascal] Default compiler options for shootout using fpc 2.2.0

2008-10-05 Thread Vincent Snijders
Florian Klaempfl schreef: Vincent Snijders schrieb: What should be the default compiler options for the shootout benchmarks? The used compiler is fpc 2.2.0. The benchmarks are run on a Intel Q6600 quad-core, either with 32 bits or 64 bits Ubuntu. There is some controversion about it, see ht

Re: [fpc-pascal] Re: command-line+Carbon template

2008-10-05 Thread Jonas Maebe
On 05 Oct 2008, at 13:31, [EMAIL PROTECTED] wrote: If by "the two tests" you mean testing the FPC version vs. testing the CodeWarrior version, then: yes, I'm pretty sure, since I'm running them both on the same machine (a Powerbook G4 laptop running Mac OSX 10.4.11). The tests are self-cont

[fpc-pascal] Re: command-line+Carbon template

2008-10-05 Thread logrus
Thanks, Jonas -- I'll give that a try and report back. Bill > On 04 Oct 2008, at 22:48, Jonas Maebe <[EMAIL PROTECTED]> wrote: > > You could try running > > sudo fs_usage -w yourapp > > to see what exactly is going on at the file system level. Or you can > start your application and run "sudo fs

[fpc-pascal] Re: command-line+Carbon template

2008-10-05 Thread logrus
Marco -- If by "the two tests" you mean testing the FPC version vs. testing the CodeWarrior version, then: yes, I'm pretty sure, since I'm running them both on the same machine (a Powerbook G4 laptop running Mac OSX 10.4.11). The tests are self-contained within that machine (the LISP code running

Re: [fpc-pascal] Default compiler options for shootout using fpc 2.2.0

2008-10-05 Thread Jonas Maebe
On 05 Oct 2008, at 11:35, Vincent Snijders wrote: Jonas Maebe schreef: On 05 Oct 2008, at 11:09, Vincent Snijders wrote: If I look at http://svn.freepascal.org/cgi-bin/viewvc.cgi/tags/release_2_2_0/compiler/x86_64/cpuinfo.pas?view=markup it seems that in fpc 2.2.0 regvars are not enabled. Wh

Re: [fpc-pascal] Default compiler options for shootout using fpc 2.2.0

2008-10-05 Thread Vincent Snijders
Jonas Maebe schreef: On 05 Oct 2008, at 11:09, Vincent Snijders wrote: If I look at http://svn.freepascal.org/cgi-bin/viewvc.cgi/tags/release_2_2_0/compiler/x86_64/cpuinfo.pas?view=markup it seems that in fpc 2.2.0 regvars are not enabled. Why not? Because they didn't work properly with x86

Re: [fpc-pascal] Default compiler options for shootout using fpc 2.2.0

2008-10-05 Thread Jonas Maebe
On 05 Oct 2008, at 11:09, Vincent Snijders wrote: If I look at http://svn.freepascal.org/cgi-bin/viewvc.cgi/tags/release_2_2_0/compiler/x86_64/cpuinfo.pas?view=markup it seems that in fpc 2.2.0 regvars are not enabled. Why not? Because they didn't work properly with x86_64 at first. It was f

Re: [fpc-pascal] Default compiler options for shootout using fpc 2.2.0

2008-10-05 Thread Vincent Snijders
Florian Klaempfl schreef: Vincent Snijders schrieb: What should be the default compiler options for the shootout benchmarks? The used compiler is fpc 2.2.0. The benchmarks are run on a Intel Q6600 quad-core, either with 32 bits or 64 bits Ubuntu. There is some controversion about it, see ht

Re: [fpc-pascal] Default compiler options for shootout using fpc 2.2.0

2008-10-05 Thread Florian Klaempfl
Vincent Snijders schrieb: What should be the default compiler options for the shootout benchmarks? The used compiler is fpc 2.2.0. The benchmarks are run on a Intel Q6600 quad-core, either with 32 bits or 64 bits Ubuntu. There is some controversion about it, see https://alioth.debian.org/tra

[fpc-pascal] Default compiler options for shootout using fpc 2.2.0

2008-10-05 Thread Vincent Snijders
What should be the default compiler options for the shootout benchmarks? The used compiler is fpc 2.2.0. The benchmarks are run on a Intel Q6600 quad-core, either with 32 bits or 64 bits Ubuntu. There is some controversion about it, see https://alioth.debian.org/tracker/index.php?func=detail&

Re: [fpc-pascal] Spreadsheet library/unit?

2008-10-05 Thread Antal
You might use the CSV, which can be easily open with Office and to generate by your application. I am using this way to handle data to/from excel It is a plain text file, each row is separated with CRLF (#13#10), each cell separated with tab (#9) Also, if you'r data has no comma or " then you can u