FabioPaes Qui 18 Ago 2016, 1:28 am
A principio o problema que encontrei e referente a condição que filtra pelo Numero do Documento... Pois esta pegando o valor da CxListagem errada...
Esta assim:
Private Sub Comando4_Click()
Dim sel As Variant
Dim strwhere As String
strwhere = "nrDocumento in ("
For Each sel In Me.ListaGrupo.ItemsSelected
strwhere = strwhere & "'" & Me.ListaGrupo.ItemData(sel) & "',"
Next
strwhere = strwhere & ")"
DoCmd.OpenReport "RelMed", acViewPreview, , strwhere
End Sub
-------------------------------------------------------------------------------------------
Mude para:
Private Sub Comando4_Click()
Dim sel As Variant
Dim strwhere As String
strwhere = "nrDocumento in ("
For Each sel In Me.ListaPedido.ItemsSelected
strwhere = strwhere & "'" & Me.ListaPedido.ItemData(sel) & "',"
Next
strwhere = strwhere & ")"
DoCmd.OpenReport "RelMed", acViewPreview, , strwhere
End Sub
Veja se seria isso amigo.
.................................................................................
_____________________________________________________________________
Achou a solução para sua dúvida? Não seja Egoísta, Compartilhe com todos!
A dica do Colega foi útil? Agradeça!
O importante não saber tudo, mas sim a Onde procurar!