Ver Mensaje Individual
  #3 (permalink)  
Antiguo 05/07/2006, 16:24
manedf
 
Fecha de Ingreso: septiembre-2005
Mensajes: 74
Antigüedad: 18 años, 7 meses
Puntos: 0
Sub Mostrar_Todos()
Dim j As Long
Dim aux As Recordset

Lista.Clear
Set aux = Datos.OpenRecordset("select * from ventas") aqui marca el error
aux.MoveLast
aux.MoveFirst

For j = 0 To aux.RecordCount - 1
Lista.AddItem aux!fecha & " --> " & aux!Codigo
aux.MoveNext
Next j
End Sub