Filtros... Duvida cruel...

Delphi

17/02/2003

Meu cliente pediu para que filtrar a tabela, que é visualizada por um DBGrid, fosse filtrada da seguinte forma:

Pelo campo VALOR e Pelo campo SITUAÇÃO:

Ex: VALOR >= 100 e SITUAÇÃO = NOVO;

Como posso fazer isso usando Table e em tempo de execução com o cliente alterando os valores???


Desde já agradeço.


Rafael Silva

Rafael Silva

Curtidas 0

Respostas

Navoid

Navoid

17/02/2003

assim cara

****
table.filtered:= false;
table.filter:= ´(VALOR >= ´+editvalor.text+´) AND (SITUAÇÃO = ´´NOVO´´)´;
table.filtered:= true;
****

até


GOSTEI 0
POSTAR