jeffmoore64
Programmer
The error occurs at the position shown in the code sample. I have googled the error message and am not really sure of what to make of the answers out there. One of which involves modifiying the registry. Is this some thing to do with nulls???
tia
Jeff
tia
Jeff
Code:
If Me!txt_revised = False Then
Me!txt_revised = True
ssql = "SELECT id, fld_rev_changes FROM dbo.tbl_ITP WHERE (id = " & Me!txt_ITP_id & ")"
Set rs1 = New ADODB.Recordset
rs1.Open ssql, connection, adOpenDynamic, adLockOptimistic
If IsNull(rs1!fld_rev_changes) Then
rs1!fld_rev_changes = Me!txt_activity_id
rs1.Update
Else
tmp_rev = rs1!fld_rev_changes & "," & Me!txt_activity_id
--------> rs1!fld_rev_changes = tmp_rev
'rs1.Update
End If
rs1.Close
End If