[fpc-pascal] Fwd: wishlist for new forum

2010-01-17 Thread david.boy
>-- Forwarded message -- >From: OsvaldoTCF >Date: 2010/1/6 >Subject: wishlist >To: forpas >Please send us your wish list. >What you like to have in a forum? >What facilities? Interactivity ... Hello, I am not a Free Pascal user but I want to learn Pascal. Ok..I want to see a

Re: [fpc-pascal] Fwd: wishlist for new forum

2010-01-17 Thread Marco van de Voort
In our previous episode, david@i-cable.com said: want to see a user-friendly forum. Actually, I use FreeBASIC. Please make a forum as nice as the following forum. Thank you very much. http://www.freebasic.net/forum/index.phpPRE http://www.i-cable.com Have a look at

[fpc-pascal] fplisten

2010-01-17 Thread Rainer Stratmann
Does someone know how to limit the connections to a server when calling fplisten at the serverside. Now several connections are possible, but I want to limit to 1 connection from outside. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

[fpc-pascal] Challenging port of Borland Pascal program to FPC

2010-01-17 Thread John Youngquist
Hi: I have been using FPC for some time now and think it is a great system. I am facing a challenging port of a Borland Pascal 7 program to FPC. It is about 8000 lines long. While most of it is ordinary and will compile easily it uses some features and extensions which I don't know how to

[fpc-pascal] Firebird errors

2010-01-17 Thread JoshyFun
Hello FPC-Pascal, When an error, in a SQL command issued to a Firebird engine, raises it looks like (in my case): SQL Error: Dynamic SQL error code = @1 Column unknown @1 at line @1 column @2 In Delphi I get the @1, @2, ... parsed to its right names but not in FPC. Anybody knows the

Re: [fpc-pascal] [OT] which editor - emacs?

2010-01-17 Thread Mattias Gaertner
On Sun, 10 Jan 2010 14:59:03 +0100 (CET) mar...@stack.nl (Marco van de Voort) wrote: [...] I don't use Lazarus for FPC development. This is not a problem of Lazarus, but more that I don't want to often rebuild lazarus when I'm working on FPC. You don't need to. Mattias

Re: [fpc-pascal] RTTI Bug or something else i did wrong...

2010-01-17 Thread Mattias Gaertner
On Sat, 16 Jan 2010 07:43:59 -0300 Jorge Aldo G. de F. Junior jagf...@gmail.com wrote: well, the bug still stands... fTypeData := GetTypeData(Self.ClassInfo); This works here. Do you have a complete example? this line is the problem... looks like i cannot either GetTypeData of

Re: [fpc-pascal] Challenging port of Borland Pascal program to FPC

2010-01-17 Thread Jeff Wormsley
John Youngquist wrote: I would like to port the program as is, but eventually get a PCI 48 I/O line card to escape the ISA bus and also talk USB as well. Getting it to run on later versions of Windows might be useful. This program controls a machine on a single purpose computer. Windows is

Re: [fpc-pascal] fplisten

2010-01-17 Thread Anthony Walter
Don't call accept() on the incoming connection, call close() instead. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Challenging port of Borland Pascal program to FPC

2010-01-17 Thread John Youngquist
Interesting response. I routinely implement large systems on the 8051 chip in assembly language which I can write faster than Pascal. Assembly is a minimum of 500% faster than C on the 8051. I hate C anyway. The machine is a pick place machine designed to assemble SMT circuit boards. It was

Re: [fpc-pascal] Challenging port of Borland Pascal program to FPC

2010-01-17 Thread Florian Klaempfl
John Youngquist schrieb: Interesting response. I routinely implement large systems on the 8051 chip in assembly language which I can write faster than Pascal. Assembly is a minimum of 500% faster than C on the 8051. I hate C anyway. FPC runs also on embedded arm systems so this might be