[fpc-pascal]Using FPC

2003-07-19 Thread Israel Simas
Hi everyone, I'm a student of Data Processing college and in its labs i always wrote code using Turbo Pascal. For self development as a programmer, i started to search some way to study pascal at home, and found FPC. But i couldn't use it as i expected. I've downloaded the w321010full file, and in

Re: [fpc-pascal]Problem linking TESTIB.PP

2003-07-19 Thread Michael . VanCanneyt
On Sat, 19 Jul 2003, Marco van de Voort wrote: > > On Fri, 18 Jul 2003, Eduardo Lopez wrote: > > > > > Hello all: > > > > > > I'm trying to compile te TESTIB.PP and I get the following error: > > > > > > Linking testib.exe > > > c:\pp\bin\win32\ldw.exe: cannot find -ldl > > > testib.pp(89,1) Err

Re: [fpc-pascal]Problem linking TESTIB.PP

2003-07-19 Thread Marco van de Voort
> On Fri, 18 Jul 2003, Eduardo Lopez wrote: > > > Hello all: > > > > I'm trying to compile te TESTIB.PP and I get the following error: > > > > Linking testib.exe > > c:\pp\bin\win32\ldw.exe: cannot find -ldl > > testib.pp(89,1) Error: Error while linking > > Closing script ppas.bat > > Remove the

Re: [fpc-pascal]Problem linking TESTIB.PP

2003-07-19 Thread Michael . VanCanneyt
On Fri, 18 Jul 2003, Eduardo Lopez wrote: > Hello all: > > I'm trying to compile te TESTIB.PP and I get the following error: > > Linking testib.exe > c:\pp\bin\win32\ldw.exe: cannot find -ldl > testib.pp(89,1) Error: Error while linking > Closing script ppas.bat Remove the {$linklib dl} from th

Re: [fpc-pascal]Program is busy

2003-07-19 Thread MichaƂ Kamburelis
If you're doing anything time-consumig (like reading data from internet socket) and you want your program to respond to user actions (to Windows / XWindows / any-other-event-driven-environment events), to repaint its windows etc. you have to merge event loop with your data-reading code. Somethi