Re: [Lazarus] csvexporter

2008-12-16 Thread Andrea Mauri
Michael Van Canneyt ha scritto: On Tue, 16 Dec 2008, Andrea Mauri wrote: I am developing a cross platform application. Yesterday I dropped a csvexporter on a form (and I was under win). The lazdbexport unit have been added by the IDE. Then today, working on my Ubuntu pc at home I

Re: [Lazarus] csvexporter

2008-12-16 Thread Mattias Gärtner
Zitat von Andrea Mauri andrea.mauri...@gmail.com: Dear all, when I put a csvexporter on a form lazarus automatically adds to my project lazdbexport unit if I am under windows and fpccsvexport if I am under Linux. I didn't try cvsexporter myself. Correct me if I'm wrong: When you drop a

[Lazarus] csvexporter

2008-12-16 Thread Andrea Mauri
Dear all, when I put a csvexporter on a form lazarus automatically adds to my project lazdbexport unit if I am under windows and fpccsvexport if I am under Linux. So I have to do this: {$IFDEF WINDOWS} lazdbexport; {$ENDIF} {$IFDEF UNIX} fpcsvexport; {$ENDIF} Is it ok? Andrea

Re: [Lazarus] csvexporter

2008-12-16 Thread Vincent Snijders
Andrea Mauri schreef: I am developing a cross platform application. Yesterday I dropped a csvexporter on a form (and I was under win). The lazdbexport unit have been added by the IDE. Then today, working on my Ubuntu pc at home I tried to recompile the same project and I got an error

Re: [Lazarus] csvexporter

2008-12-16 Thread Andrea Mauri
I am developing a cross platform application. Yesterday I dropped a csvexporter on a form (and I was under win). The lazdbexport unit have been added by the IDE. Then today, working on my Ubuntu pc at home I tried to recompile the same project and I got an error (lazdbexport unit not found), so

Re: [Lazarus] csvexporter

2008-12-16 Thread Michael Van Canneyt
On Tue, 16 Dec 2008, Andrea Mauri wrote: I am developing a cross platform application. Yesterday I dropped a csvexporter on a form (and I was under win). The lazdbexport unit have been added by the IDE. Then today, working on my Ubuntu pc at home I tried to recompile the same project and

Re: [Lazarus] csvexporter

2008-12-16 Thread Andrea Mauri
Yes, fpc 2.2.2 and lazarus svn andrea Vincent Snijders ha scritto: Andrea Mauri schreef: I am developing a cross platform application. Yesterday I dropped a csvexporter on a form (and I was under win). The lazdbexport unit have been added by the IDE. Then today, working on my Ubuntu pc