If rsAttrib("Description").Value <> vbNull Then
strCondDesc = rsAttrib("Description").Value
End If
Above code is wrttten in vb6.0
Datatype for Column Description is varchar and above code works fine except one case.
If value of Description is “1” then it won’t enter the If block as in visual basic 6.0 VBNULL is enumeration and its value is 1. I want it to execute for 1 also.
Please give me some suggestion.
how can i handle this.
