Re: [fpc-pascal] Free Pascal compiler/linker/debugger as aplug-in/replacement for Delphi compiler/linker/debugger

2008-02-11 Thread Marco Alvarado
2008/2/11, Skybuck Flying [EMAIL PROTECTED]: I don't like lazarus so much :) I like Delphi 2007 IDE much better :) What if FPC is re-built as a addon for Delphi 2007, and later on you like Delphi 2009 more? ;) -Marco ___ fpc-pascal maillist -

Re: [fpc-pascal] Free Pascal compiler/linker/debugger as aplug-in/replacement for Delphi compiler/linker/debugger

2008-02-11 Thread Skybuck Flying
I don't like lazarus so much :) I like Delphi 2007 IDE much better :) Bye, Skybuck. What about Lazarus? -Marco ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Free Pascal compiler/linker/debugger as a plug-in/replacement for Delphi compiler/linker/debugger

2008-02-11 Thread Joao Morais
Michael Van Canneyt wrote: On Mon, 11 Feb 2008, Skybuck Flying wrote: Hello, Delphi's compiler/linker is probably malfunctioning for uint64 types. It would be nice if free pascal compiler/linker/debugger can be used as a replacement. So that I can still use the Delphi IDE. To do that

Re: [fpc-pascal] Free Pascal compiler/linker/debugger as a plug-in/replacement for Delphi compiler/linker/debugger

2008-02-11 Thread Marco Alvarado
What about Lazarus? -Marco 2008/2/11, Michael Van Canneyt [EMAIL PROTECTED]: On Mon, 11 Feb 2008, Skybuck Flying wrote: Hello, Delphi's compiler/linker is probably malfunctioning for uint64 types. It would be nice if free pascal compiler/linker/debugger can be used as a

[fpc-pascal] Free Pascal compiler/linker/debugger as a plug-in/replacement for Delphi compiler/linker/debugger

2008-02-11 Thread Skybuck Flying
Hello, Delphi's compiler/linker is probably malfunctioning for uint64 types. It would be nice if free pascal compiler/linker/debugger can be used as a replacement. So that I can still use the Delphi IDE. To do that probably requires replacing some DLL. Maybe like: DCC.DLL or something

[fpc-pascal] fpc 2.2's tmysql5conn error

2008-02-11 Thread Bee
Hi all, This morning, when I was testing to upgrade FPC on productional server to v.2.2, I found a strange error in TmySQL5Connection of FPC 2.2's FCL-DB. Any queries that have 'sum' would result a 'field size = 0' error message. The same exact query works fine on FPC 2.0. On CentOS4. Mantis

Re: [fpc-pascal] Interfacing with the free pascal compiler ?

2008-02-11 Thread Skybuck Flying
Ok, I will open source my little IDE so other people can help with it. Or use it in their own IDE. For now I am looking for: 1. A replacement for RichEdit which has syntax highlighting for pascal/delphi. Line numbers are a big plus. 2. Some help with a DLL/API interface/specification.

Re: [fpc-pascal] Interfacing with the free pascal compiler ?

2008-02-11 Thread Skybuck Flying
Hello, Is there a special way to interface with the free pascal compiler, for example via a DLL/API ? Just use the compiler unit in your project. I want to develop the IDE in Delphi 2007. Is it still possible to interface via the compiler unit ??? Bye, Skybuck.

Re: [fpc-pascal] Interfacing with the free pascal compiler ?

2008-02-11 Thread Florian Klaempfl
Skybuck Flying schrieb: Hello, Is there a special way to interface with the free pascal compiler, for example via a DLL/API ? Just use the compiler unit in your project. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

[fpc-pascal] Interfacing with the free pascal compiler ?

2008-02-11 Thread Skybuck Flying
Hello, Is there a special way to interface with the free pascal compiler, for example via a DLL/API ? Or is an IDE supposed to interface via the FPC executable, command line parameters, and input files and console output with possibly output re-direction to files or so ? For example, I

[fpc-pascal] set addition bug?

2008-02-11 Thread Adam Naumowicz
Hello, I'd like to know if this is a known issue, or a new bug. With the following code: -- program tester; type SomeType = ( SomeElem ); const ElemSet = [ SomeElem ]; begin writeln(SomeElem in ElemSet); writeln(SomeElem in (ElemSet + [])); end. -- one

Re: [fpc-pascal] Can you knock my socks off ? Can you mimic Skybuck's/Delphi's Major Breakthrough for code path and memory structure selection ?

2008-02-11 Thread Luiz Americo Pereira Camara
Matt Emson wrote: I don't think this guy actually listens to anything anyone says to him. He always seems, to me, to be speaking to an audience, rather than a discussion list. Adios Sybuck Flying, added you to my ignore list ;-) +1 Luiz ___

Re: [fpc-pascal] Free Pascal compiler/linker/debugger as a plug-in/replacement for Delphi compiler/linker/debugger

2008-02-11 Thread Michael Van Canneyt
On Mon, 11 Feb 2008, Skybuck Flying wrote: Hello, Delphi's compiler/linker is probably malfunctioning for uint64 types. It would be nice if free pascal compiler/linker/debugger can be used as a replacement. So that I can still use the Delphi IDE. To do that probably requires

Re: [fpc-pascal] Re: Procedures in records not supported :(

2008-02-11 Thread Joost van der Sluis
If you wanna chat, use irc. (freenode - #fpc) Using a mailinglist we force people to think about their problems before they send mails about it. Thus they have to test their code before sending it. That makes it easier to follow, and improves the changes that people will read the emails. (and

Re: [fpc-pascal] set addition bug?

2008-02-11 Thread Adam Naumowicz
Hello again, On Mon, 11 Feb 2008, Adam Naumowicz wrote: Hello, I'd like to know if this is a known issue, or a new bug. With the following code: -- program tester; type SomeType = ( SomeElem ); const ElemSet = [ SomeElem ]; begin writeln(SomeElem in ElemSet);

[fpc-pascal] Semaphore

2008-02-11 Thread Damien Gerard
Hi ! I think it has been discussed before but I would like to use Semaphores, to allow multiple reads but 1 write at once (which is in fact commons operations in a multi-thread program). My program must work under OSX/Nux and Windows. I may have missed something but I can not find

Re: [fpc-pascal] Free Pascal compiler/linker/debugger as aplug-in/replacement for Delphi compiler/linker/debugger

2008-02-11 Thread Skybuck Flying
Nothing to download yet ? Oh :( Bye, Skybuck. Then use it as a gateway to FPC :):):) look at the crossfpc project. It does exactly that. Simon Kissel is the head of that project. Michael. ___ fpc-pascal maillist -

Re: [fpc-pascal] Interfacing with the free pascal compiler ?

2008-02-11 Thread Daniƫl Mantione
Op Mon, 11 Feb 2008, schreef Skybuck Flying: Hello, Is there a special way to interface with the free pascal compiler, for example via a DLL/API ? Just use the compiler unit in your project. I want to develop the IDE in Delphi 2007. Is it still possible to interface via the compiler

Re: [fpc-pascal] Can you knock my socks off ? Can you mimic Skybuck's/Delphi's Major Breakthrough for code path and memory structure selection ?

2008-02-11 Thread Matt Emson
Peter Vreman wrote: None the less very interesting example. Problem is ofcourse FPC does not support the new Delphi 2007 features. And the big question is how would you port this code to FPC ? Please don't make _your_ problem our problem!!! You knew beforehand that FPC doesn't support these

Re: [fpc-pascal] Can you knock my socks off ? Canyou mimic Skybuck's/Delphi'sMajor Breakthrough for code path and memory structure selection ?

2008-02-11 Thread Skybuck Flying
Oh by I do listen. This mailing list has been most usefull to solving some of the problems :) Thanks people ! =D Bye, Skybuck ;) ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal