I\'m doing some work on a legacy application, and my VB6 skills aren\'t that great. I need to check whether a String field has been initialized and set to something other th
Just adding info to MarkJ's answer. If you are working with a recordset, this
if rs.fields.item("rsField").value = "" then
Will throw a runtime error in case that item is null. You should do this:
if rs.fields.item("rsField").value & "" = "" then
Good luck.