hi here is a patch for two bugs:
*TFloatField.SetAsString doesn't look at DecimalSeparator for converting a
string into a Float (this fixes lazarus issue 893:
http://www.lazarus.freepascal.org/mantis/view.php?id=893 )
*TBooleanField.SetAsString won't accept an empty string as a valid value, also
- Original Message -
From: "Luiz AmÃrico" <[EMAIL PROTECTED]>
To: "FPC developers' list"
Sent: Sunday, May 08, 2005 6:45 PM
Subject: Re: [fpc-devel] Duplicate code inTDatasource.DistributeEvent
implementation
> Michael Van Canneyt wrote:
> >
> > On Sat, 7 May 2005, Luiz AmÃrico wrote
Michael Van Canneyt wrote:
On Sat, 7 May 2005, Luiz AmÃrico wrote:
No. First non visual components (such as detail datasets, lookup datasets)
must get their event, and only then visual controls get an event.
The double loop is intentional.
Thank you.
Now I can see the intention.
It seens that th
> yes. In that case we should make TCustomConnection an alias for
> TDBDatabase.
If the interfaces are identical I see no problems.
Anyway could you rename TDBDatabase? It's orrible and I overlooked it when I
searched for a TConnection replacement... ;)
Bye Uberto
__
On Sat, 7 May 2005, Luiz AmÃrico wrote:
> take a look at TDatasource.DistributeEvent implementation (datasource.inc):
>
> With FDatalinks do
> begin
> For I:=0 to Count-1 do
> With TDatalink(Items[i]) do
> If Not VisualControl Then
> DataEvent(Event,Info);
> For I:=0 to Count-1 do
> With T