S
smk23
I am opening an ADODB recordset rs. If fld is the ADODB.Field, I check to see
if fld is null or not with:
For Each fld in rs.Fields
If fld.Value = Null Then
'do something
Else
'do something else
End If
It always goes to the ELSE statement, whether or not the original value in
the table is null. What am I missing?
Thanks!!
if fld is null or not with:
For Each fld in rs.Fields
If fld.Value = Null Then
'do something
Else
'do something else
End If
It always goes to the ELSE statement, whether or not the original value in
the table is null. What am I missing?
Thanks!!