Pessoal no código abaixo, como faço pra listar no grid somente os dados que atenderem um requisito, como por exemplo só adcionarem os registros que sejam igual a ao valor de uma variavel.?
valeu pessoal
With Grid
Do While Not var_tb_boletos.EOF
If var_tb_boletos("id_boleto") <> "" Then .TextMatrix(.Rows - 1, 0) = var_tb_boletos("id_boleto")
If var_tb_boletos("id_pedido") <> "" Then .TextMatrix(.Rows - 1, 1) = var_tb_boletos("id_pedido")
If var_tb_boletos("data_vencimento") <> "" Then .TextMatrix(.Rows - 1, 2) = var_tb_boletos("data_vencimento")
If var_tb_boletos("valor") <> "" Then .TextMatrix(.Rows - 1, 3) = var_tb_boletos("valor")
var_tb_boletos.MoveNext
If var_tb_boletos.EOF <> True Then
.Rows = .Rows + 1
End If
Loop
End With