Search found 4 matches

by dev.bt
12.09.2019, 13:13
Forum: ZeosLib 7.2 Forum
Topic: ZEOS 7.2.4 Filter error
Replies: 5
Views: 337

Re: ZEOS 7.2.4 Filter error

Absolutely true.i have to solve the problem as quickly as possible.
Thanks anyway.
by dev.bt
12.09.2019, 11:54
Forum: ZeosLib 7.2 Forum
Topic: ZEOS 7.2.4 Filter error
Replies: 5
Views: 337

Re: ZEOS 7.2.4 Filter error

the result of ShowMessage(MyDataset.Filter); is : NOM like LOWER('*a*') // NOM is the header of the Column. All records with an 'a' will show unless it ends with an 'a' or the cell squals an 'a' then it doesn't filter. it's like as if it doesn't read the last char at all (IsMatch or the LIKE Operato...
by dev.bt
12.09.2019, 10:50
Forum: ZeosLib 7.2 Forum
Topic: ZEOS 7.2.4 Filter error
Replies: 5
Views: 337

Re: ZEOS 7.2.4 Filter error

i will try it.
by dev.bt
11.09.2019, 15:48
Forum: ZeosLib 7.2 Forum
Topic: ZEOS 7.2.4 Filter error
Replies: 5
Views: 337

ZEOS 7.2.4 Filter error

I am using that to filter : procedure TNGrid.EditChange(Sender: TObject); Var En_tete : string; //header name begin if (Col <> Null) and (Col >= CFix) then En_tete := MyDataset.Fields[Col-1].DisplayName; if NOT (TEdit(Sender).Text = '') then begin MyDataset.Filtered:= false; MyDataset.Filter:= En_te...