Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/01/2011, 22:45
Avatar de lokoman
lokoman
 
Fecha de Ingreso: septiembre-2009
Mensajes: 502
Antigüedad: 15 años, 6 meses
Puntos: 47
Respuesta: rs.Open como hacerlo?

Hola!!
Por que no intentas asi:
Código vb:
Ver original
  1. Private Sub Text1_Change()
  2.  
  3. On Error Resume Next
  4.  
  5.     if rs.state=1 then rs.close
  6.  
  7.     rs.Open "select * from tbl_pacientes where apellido LIKE '%" & Me.Text1.Text & "%'", cnn, adOpenStatic, adLockOptimistic
  8.  
  9.     With DataGrid
  10.         .AllowUpdate = False
  11.     End With
  12.    
  13.     Call CargarDataGrid(DataGrid)
  14. End Sub

de esta forma se mantiene abierto el recordset...