Deleting New Record

J

JonWayne

If you're on the New, Dirty record and decide to drop it for some reason or
another, how do you programatically delete it? It appears as though if you
are on a NewRecord, dirty it, and clone the form's recordset, the new clone
does not contain the currently active record. Is that correct?

Thanks
 
W

Wayne Morgan

The clone will not contain the dirty record, it hasn't been committed to the
recordset yet. To undo a dirty record instead of committing it, you can
press Esc twice. In code this would be done with Me.Undo.
 
J

JonWayne

Thank you.


Wayne Morgan said:
The clone will not contain the dirty record, it hasn't been committed to the
recordset yet. To undo a dirty record instead of committing it, you can
press Esc twice. In code this would be done with Me.Undo.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top