Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/04/2002, 20:03
Nochero
 
Fecha de Ingreso: febrero-2002
Ubicación: Mi ASP Bunker
Mensajes: 397
Antigüedad: 23 años, 2 meses
Puntos: 1
Re: Problema con if then

Simplemente no estas posicionado en ningun registro, o sea estas en BOF, EOF o el recordset esta vacio, quizas una consulta que no entrego ningun registro.
Puedes verificar previamente con
IF Not Frs.EOF And Not Frs.BOF then
..

Tip: Frs.Fields("PathI1") = Frs("PathI1")

Bye !