you can do it via recordset object
e.g.
if trim(recordset.Fields("IDNo"))="" then
msgbox "Empty or NULL"
end if
OR
do it in sql statement
recordset.open "SELECT * FROM table WHERE field1 IS NULL",activeconnection
if NOT recordset.EOF then
msgbox "Empty or NULL"
end if
I hope I help you with a simple solution
-ed @ cebujobline.com Team