Filtros... Duvida cruel...
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.
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
Curtidas 0
Respostas
Navoid
17/02/2003
assim cara
****
table.filtered:= false;
table.filter:= ´(VALOR >= ´+editvalor.text+´) AND (SITUAÇÃO = ´´NOVO´´)´;
table.filtered:= true;
****
até
****
table.filtered:= false;
table.filter:= ´(VALOR >= ´+editvalor.text+´) AND (SITUAÇÃO = ´´NOVO´´)´;
table.filtered:= true;
****
até
GOSTEI 0