[fpc-devel]ClrScr bug in crt unit (win32 1.0.7 )

2003-02-13 Thread pascalive
I noticed that the crt.ClrScr (win32) in 1.0.7 is buggy. Take a look at the following program: uses crt; vari,j: integer; begin for i :=1 to 25 do begin window(1,1,80,25); textattr:=7; clrScr; window(1,1,i,i); textAttr:=31; clrScr; f

[fpc-devel]test please ignore

2004-05-16 Thread pascalive
send with pascalive via web __ Acabe com aquelas janelinhas que pulam na sua tela. AntiPop-up UOL - É grátis! http://antipopup.uol.com.br/ ___ fpc-devel maillist - [EMAIL

[fpc-devel] Small issue in win32 package of fpc 1.9.6

2005-01-03 Thread pascalive
I installed fpc-1.9.6.i386-win32.zip just fine. The only problem is that the pdf docs were put in base directory instead of doc dir. Using windows XP sp2 Luiz __ Acabe com aquelas janelinhas que pulam na sua tela. AntiPo

[fpc-devel] Another small issue in win32 package

2005-01-04 Thread pascalive
The precompiled units of sqlite, cdrom ,odbc, winver and tcl comes in the install file (fpc-1.9.6.i386-win32.zip) but arent installed in the units folder. Luiz Americo __ Acabe com aquelas janelinhas que pulam na sua tela.

[fpc-devel] Resource string in TStringList

2005-01-08 Thread pascalive
Some time ago there was a discussion about the use of Resource string in TList that resulted in a modification in TList.Get function (Created TList.RaiseIndexError function). I think that the same could be done in TStringList (i noticed that TStringList.Get function still uses resource string

[fpc-devel] Another suggestion for TList

2005-01-08 Thread pascalive
How about changing the Error(SlistIndexError,[AIndex]) calls to RaiseIndexError(Index : Integer) calls in Delete,Exchange,Insert,Move methods of TList class? The same goes to TStringList class PS: I am not sending patches because i dont compile the compiler/rtl from sources, so i can't test

Re: [fpc-devel] Resource string in TStringList

2005-01-08 Thread pascalive
> pascalive wrote: > > Some time ago there was a discussion about the use of Resource string in > > TList that resulted in a modification in TList.Get function (Created > > TList.RaiseIndexError function). I think that the same could be done in > > TStringList (i n

[fpc-devel] DisableControls and ControlsDisabled method/property of TDataset

2005-01-13 Thread pascalive
Recently the mentioned method/property was added to Tdataset. I'd like to know what's the behavior of them: when is supposed to be called, whats the consequence... I'm mantaining the sqlite wrapper (TDataset) and would like to know if its necessary to modify something in it Thanks Luiz Americo

[fpc-devel] Some thoughts about TFPList

2005-05-02 Thread pascalive
I noticed that TFPList class was added in cvs version as a way to get rid of Notify performance penalty. I suggest to remove TFPList.Grow method since its only for Delphi compability (but Delphi doesnt have TFPlist) and AFAIK virtual methods add some degree of performance hit. Luiz _

[fpc-devel] Patch to sqliteds and db units

2005-12-17 Thread pascalive
Here's a patch that does the following in *sqlite*ds: - Change the way the database handle is retrieved - Makes CreateBlobStream handle bmWrite mode properly - Makes changes in Get/SetFieldData to adapt to recent changes in TDataset - Small refactorings and some debug info tweaks BTW: As sugges

[fpc-devel] Internal error 200311075 with fpc202 under windows

2005-12-24 Thread pascalive
I get this error when i follow these steps: 1 - in an empty dir add the files: chrono2db.pas , chronolog.pas and Thomas Schatzl cpu unit (basetype.pas, cpu.pas,mmx.pas,platform.inc) found at http://members.yline.com/~tom_at_work/cpudist.zip 2 - compile chrono2db.pas using commandline (fpc chrono

[fpc-devel] Patch to sqliteds and db units

2006-01-03 Thread pascalive
I'm sending two patches: sqliteds.zip which applies to sqlite*ds units and db.zip which applies to db unit. While the second is only minor performance tweaks, i recommend applying the first one since it fixes a bug that can lead to data loss Changes in sqliteds.zip: - Change the way the databas