Re: [fpc-pascal] (no subject)

2005-04-05 Thread Michał Woźniak
> 9x/ME is another story, the console implementation of 9x/ME is poor. I > think the best option for 9x/ME users is 1.0.10/go32v2. I'd say - go for Lazarus! www.lazarus.freepascal.org It's a great IDE, and it actually gets the job done. I am using it for a while now. Cheers Mike __

Re: [fpc-pascal] Re: confirm 7ee8cb55777a34d60501ace9d48fd22e1e5cc429

2005-04-01 Thread Michał Woźniak
Dnia piątek, 1 kwietnia 2005 11:50, Mindaugas Indriunas napisał: > I would like to understand better how the Lazarus Freepascal works. > > Is there any free working software that is written purely in Lazarus > Freepascal, > the sourcecode of which I could download and study? Eeerr... I would sugge

Re: [fpc-pascal] Blockread and buffers

2005-03-25 Thread Michał Woźniak
Does anybody here on this list want the hints off by default? I don't. Definetely, a possibility to switch hints on/off (with the latter as default) would be great, but if it is not available. It is also clear to me that, concerning hints, there is no such thing as Delphi-compatibility. Why both

Re: [fpc-pascal] Blockread and buffers

2005-03-21 Thread Michał Woźniak
Dnia wtorek, 22 marca 2005 04:11, Kornel Kisielewicz napisał: > Note that it is written "does not SEEM". The code is OK IMHO. As I said - pure curiosity. Besides, we all know the dream of a warning-free compilation. :) Thanks Mike ___ fpc-pascal mai

[fpc-pascal] Blockread and buffers

2005-03-21 Thread Michał Woźniak
Hmmm... Just pure curiosity: I am getting a warning "Variable does not seem to be initialized" on a code from FreePascal RTL guide: Var Fin, fout : File; NumRead,NumWritten : Word; Buf : Array[1..2048] of byte; Total : Longint; begin Assign (Fin, Paramstr(1)); Assign (Fout,Params

Re: [fpc-pascal] Resources or alike

2005-03-20 Thread Michał Woźniak
> > Dnia sobota, 19 marca 2005 23:31, Nico Arag?n napisa?: > > > IIRC, you don't even need resources: > > > > > > copy /b program.exe + file.dat combined.exe > > > > > > Then you can open combined.exe from itself, seek to (filelength - > > > sizeofdatafile -1) and use blockread. > > > > Uhmm... I

Re: [fpc-pascal] Resources or alike

2005-03-20 Thread Michał Woźniak
Dnia sobota, 19 marca 2005 23:31, Nico AragÃn napisaÅ: > IIRC, you don't even need resources: > > copy /b program.exe + file.dat combined.exe > > Then you can open combined.exe from itself, seek to (filelength - > sizeofdatafile -1) and use blockread. Uhmm... I get a Runtime error 026 everytime

Re: [fpc-pascal] Resources or alike

2005-03-19 Thread Michał Woźniak
Dnia sobota, 19 marca 2005 23:31, Nico AragÃn napisaÅ: > IIRC, you don't even need resources: > > copy /b program.exe + file.dat combined.exe > > Then you can open combined.exe from itself, seek to (filelength - > sizeofdatafile -1) and use blockread. Thanks, Nico! That's exactly, what I was lo

Re: [fpc-pascal] Resources or alike

2005-03-19 Thread Michał Woźniak
> > Is it possible in FPC to incorporate something like Delphi resources into > > the compiled program? > > Under Windows you can use resource files in FPC as well, just the tool > to convert the .rc into a linkable binary file is called differently... Well, actually I would need such a functional

[fpc-pascal] Resources or alike

2005-03-19 Thread Michał Woźniak
Hi there. Is it possible in FPC to incorporate something like Delphi resources into the compiled program? What I need is including a binary file within the executable (like when using BRCC32 and *.rc files in Delphi) so that its contents are accessible to the program at runtime, without the nee