Postada em 11/02/2005 14:30 hs
Inicio ="#" Format CboDatas, "mm/dd/yyyy") & "#" Fim = "#" & Format(Combo1, "mm/dd/yyyy") & "#"
Set Qd = bd.QueryDefs("ConsListPer") Dim wSql As String Dim X As Integer wSql = " SELECT Relatorio.Numero, Relatorio.Data, Relatorio.Comunidade, Lançamentos.Ponto, FROM (Relatorio INNER JOIN ETEs ON Relatorio.Comunidade = ETEs.Comunidade) INNER JOIN Lançamentos ON Relatorio.Numero = Lançamentos.Numero WHERE " If List2.ListCount > 0 Then For X = 0 To List2.ListCount If wSql = " SELECT Relatorio.Numero, Relatorio.Data, Relatorio.Comunidade, Lançamentos.Ponto, FROM (Relatorio INNER JOIN ETEs ON Relatorio.Comunidade = ETEs.Comunidade) INNER JOIN Lançamentos ON Relatorio.Numero = Lançamentos.Numero WHERE " Then wSql = wSql & " Relatorio.Data Between " & Inicio & " And " & Fim & " And Relatorio.Comunidade = """ & List1.List(X) & """ And Lançamentos.Ponto= """ & List2.List(X) & """" Else wSql = wSql & " Or Relatorio.Data Between " & Inicio & " And " & Fim & " And Relatorio.Comunidade = """ & List1.List(X) & """ And Lançamentos.Ponto= """ & List2.List(X) & """" End If Next X wSql = wSql & " Order By Relatorio.Data, Lançamentos.Ponto " Qd.SQL = wSql End If
LIST1 E 2 Private Sub Combo3_Click() ' Verifica se número já foi incluído Dim LenCont As Integer LenCont = Len(Combo3) For i = 0 To List2.ListCount - 1 If Combo3.Text = Left(List2.List(i), LenCont) Then MsgBox "Ponto já incluído na lista.", vbInformation List2.TopIndex = i Combo3.SetFocus Exit Sub End If Next List2.AddItem Combo3.Text End Sub
O MEU PROBLEMA É SELECIONAR VARIAS COMUNIDADES E VARIOS PONTOS, isto é, preciso adicionar nos 2 campos para filtrar no access, quantas comunidades e pontos foram selecionados, entenderam???
... Sei que o texto é longo, mas se atentem mais no:
wSql = wSql & " Or Relatorio.Data Between " & Inicio & " And " & Fim & " And Relatorio.Comunidade = """ & List1.List(X) & """ And Lançamentos.Ponto= """ & List2.List(X) & """"
... o resto me viro. Tentei usar variaveis como disse acima, mas acho que não é nada profissional..
Muito obrigado pelo vosso apoio, aliás não imaginava que teria tanto, muito obrigado a todos
|