EditMode Property
Indicates the editing status of the current record.
Return Value
Returns an EditModeEnum value.
Remarks
ADO maintains an editing buffer associated with the current record. This property indicates whether changes have been made to this buffer, or whether a new record has been created. Use the EditMode property to determine the editing status of the current record. You can test for pending changes if an editing process has been interrupted and determine whether you need to use the Update or CancelUpdate method.
See the AddNew method for a more detailed description of the EditMode property under different editing conditions.
Note EditMode can return a valid value only if there is a current record. EditMode will return an error if BOF or EOF is true, or if the current record has been deleted.