Filtros... Duvida cruel...
17/02/2003
0
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
Curtir tópico
+ 0
Responder
Posts
17/02/2003
Navoid
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é
Responder
Clique aqui para fazer login e interagir na Comunidade :)