nuenas, ps estoy tratando de mostrar datos registrados de visitas por mes y año, es decir, cuando elijo el año y el mes de ambos combos, deberian botar regis de ese mes y año en el datagrid______ estuve haciendolo asi:::>
Private Sub cboAnio_Change()
If cboAnio.Text <> "" Then
adoVisitas.RecordSource = "select * from TEMPORAL_VISITAS where (YEAR(TEMPORAL_VISITAS.fecha)=" & cboAnio.Text & ") AND (MONTH(TEMPORAL_VISITAS.fecha) = " & mes & ") order by cod_visitas"
adoVisitas.Refresh
End If
End Sub
En mi mi base de datos tiene un solo registro de junio elijo enero, y no funciona... ayudenme pliss