I have a app working with SQL 7.0 server and VB 6.0
The line I am having problems with is here.
If strActType <> Trim(objRec(11)) Then 'this line
IsAcChanged = True
objRec.Close
Set objRec = Nothing
Set objConn = Nothing
Exit Function
End If
where strActType is a string equal to "NCM" and objrec(11) is NULL, but when passing this line, the events are skipped which means that they are being interpreted as equal, does anyone know why.
The line I am having problems with is here.
If strActType <> Trim(objRec(11)) Then 'this line
IsAcChanged = True
objRec.Close
Set objRec = Nothing
Set objConn = Nothing
Exit Function
End If
where strActType is a string equal to "NCM" and objrec(11) is NULL, but when passing this line, the events are skipped which means that they are being interpreted as equal, does anyone know why.