Ver Mensaje Individual
  #6 (permalink)  
Antiguo 12/06/2002, 11:42
henryzs
 
Fecha de Ingreso: enero-2002
Mensajes: 189
Antigüedad: 23 años, 3 meses
Puntos: 0
Re: ¿Pregunta sobre Recordset.RecordCount?

hola:

Para poder manejar el atributo recordcount tienes que usar cursores clientes; antes de instanciar el recordset declaralo, instancialo e inicializa el atributo cursorlocation asi:

'Seteando parametros de objeto recordset
rst.CursorLocation = adUseClient
rst.CursorType = adOpenStatic
rst.LockType = adLockReadOnly

saludos.