G
Guest
The following code in Access 97 will not work unless I remove the
relationships from the table (the recordset being updated). I've even tried
doing an update query instead, same results.
With rst6
.AddNew
rst6([strCtl15]).Value = ContractNumber
rst6(strCtl16).Value = strCYCode
rst6(strCtl17).Value = strValue
rst6(strCtl18).Value = strAmount
.Update
End With
Is this normal Access behavior? I'm more than a little uncomfortable
forgoing referential integrity......
relationships from the table (the recordset being updated). I've even tried
doing an update query instead, same results.
With rst6
.AddNew
rst6([strCtl15]).Value = ContractNumber
rst6(strCtl16).Value = strCYCode
rst6(strCtl17).Value = strValue
rst6(strCtl18).Value = strAmount
.Update
End With
Is this normal Access behavior? I'm more than a little uncomfortable
forgoing referential integrity......