The following code is overwriting an existing record:
Sub btnNew_onclick()
rstExtensions.addRecord
End Sub
If I have selected a previous record in the recordset, then click the btnNew button, the AbsolutePosition value still points to the former existing record. When finished filling in DTC textboxes, I click on a button to call rstExtensions.update, which overwrites the previous record, instead of writing to a new record. The AbsolutePosition still points to the former record. rstExtensions is a static, client-side cursor with optimistic locking. Any ideas?
Randy Carr
randy.carr@carteretcraven.ncemcs.com
Sub btnNew_onclick()
rstExtensions.addRecord
End Sub
If I have selected a previous record in the recordset, then click the btnNew button, the AbsolutePosition value still points to the former existing record. When finished filling in DTC textboxes, I click on a button to call rstExtensions.update, which overwrites the previous record, instead of writing to a new record. The AbsolutePosition still points to the former record. rstExtensions is a static, client-side cursor with optimistic locking. Any ideas?
Randy Carr
randy.carr@carteretcraven.ncemcs.com