Ayuda con consulta
Hola atodos de nuevo, estoy haciendo la sgte consulta, .Source = "SELECT VALE_RECARGA.NRO_VR, CANTIDAD, COMB_DESCRIPCION FROM (VALE_RECARGA " & _
"INNER JOIN DETALLE_VR ON VALE_RECARGA.NRO_VR = DETALLE_VR.NRO_VR)" & _
"INNER JOIN COMBUSTIBLE ON DETALLE_VR.COMB_CODIGO=COMBUSTIBLE.COMB_CODIGO" & _
" WHERE DETALLE_VR.NRO_VR = '" & lstVale.List(lstVale.ListIndex) & "'"
Set frm_Factura.grdFactura.DataSource = rs
es decir selecciono un numero de documento en un list y quiero q su detalle salga en una grilla... sin embargo me sale el sgte error..."El conjunto de filas no admite marcadores"
No entiendo a q se refiere, podrian ayudarme por favor...
"INNER JOIN DETALLE_VR ON VALE_RECARGA.NRO_VR = DETALLE_VR.NRO_VR)" & _
"INNER JOIN COMBUSTIBLE ON DETALLE_VR.COMB_CODIGO=COMBUSTIBLE.COMB_CODIGO" & _
" WHERE DETALLE_VR.NRO_VR = '" & lstVale.List(lstVale.ListIndex) & "'"
Set frm_Factura.grdFactura.DataSource = rs
es decir selecciono un numero de documento en un list y quiero q su detalle salga en una grilla... sin embargo me sale el sgte error..."El conjunto de filas no admite marcadores"
No entiendo a q se refiere, podrian ayudarme por favor...
ocurre que tenés una consulta que no tiene definida una clave principal unica y como la grilla usa bookmarks la necesita...
