DATA REPORT EM ORDEM ALFABETICA URGENTE

NILTON.VIANNA 28/11/2009 23:03:12
#328761
Eu de novo, ?????
[Amigos estou com seguinte problema]

Ao geral meu relatório de clientes ele não fica por ordem alfabética.

Uso o Access



With PrintRelProdutos
Set .DataSource = Nothing
.DataMember = [Ô][Ô]
Set .DataSource = RS.DataSource
With .Sections([Ô]Section1[Ô]).Controls
For i = 1 To .Count
If TypeOf .Item(i) Is RptTextBox Then
.Item(i).DataMember = [Ô][Ô]
.Item(i).DataField = RS.Fields(i - 1).Name
End If
Next i
End With
.Show 1
End With



DUSK 29/11/2009 08:20:55
#328775
sql = [Ô]select * from TABELA where CAMPO order by NOME[Ô]
set pes = db.openrecordcount(sql)

TECLA 29/11/2009 09:41:34
#328777
Como disse o colega acima, carrega o Recordset [Ô]RS[Ô] com os dados ordenados por NOME (... ORDER BY nome).
Só isso!
NILTON.VIANNA 29/11/2009 11:14:57
#328781
Valeu pessoal deu certinho

RS.Open [Ô]select * FROM CadProduto where (Descricao like [ô][Ô] & txtProcurar.Text & [Ô]%[ô]) ORDER BY Descricao[Ô], CnSql, adOpenKeyset, adLockReadOnly
Tópico encerrado , respostas não são mais permitidas