Boa tarde Amigos
O código abaixo funciona bem.
Mas como ordenar a filtragem por "Nome" ?
Obrigado
Private Sub txtFiltro_Change()
Dim strSql As String
strSql = "SELECT Nome,contribuinte, cidade FROM Clientes WHERE " & _
"strConv(Nome, 2) like '*" & StrConv(Me!txtFiltro.Text, 2) & "*'" & _
"OR strConv(contribuinte, 2) like '" & StrConv(Me!txtFiltro.Text, 2) & "*'" & _
"OR strConv(cidade, 2) like '" & StrConv(Me!txtFiltro.Text, 2) & "*';"
Me!Texto77.RowSource = strSql
End Sub
O código abaixo funciona bem.
Mas como ordenar a filtragem por "Nome" ?
Obrigado
Private Sub txtFiltro_Change()
Dim strSql As String
strSql = "SELECT Nome,contribuinte, cidade FROM Clientes WHERE " & _
"strConv(Nome, 2) like '*" & StrConv(Me!txtFiltro.Text, 2) & "*'" & _
"OR strConv(contribuinte, 2) like '" & StrConv(Me!txtFiltro.Text, 2) & "*'" & _
"OR strConv(cidade, 2) like '" & StrConv(Me!txtFiltro.Text, 2) & "*';"
Me!Texto77.RowSource = strSql
End Sub