Ver Mensaje Individual
  #5  
Antiguo 13-09-2007
Rudi Rudi is offline
Miembro
 
Registrado: jul 2003
Ubicación: Venezuela
Posts: 78
Reputación: 21
Rudi Va por buen camino
Hola comprobé esto:
Código Delphi [-]
if ADOTable1.Fields[0].IsNull then
  ShowMessage('isnull funciona: valor true')
else
  ShowMessage('isnull funciona: valor false');

if ADOTable1.Fields[0].Value=null then
  ShowMessage('Value funciona: valor true')
else
  ShowMessage('value funciona: valor false');

y me funciono, están las dos posibles formas: .isnull y .value=null

revisa bien porque a mi me funcionó
Responder Con Cita