Save the current record

W

Warrio

Hello!

Is there a way to save the current record that the user is actually editing?
What I use is:
myRecordset.MoveNext
myRecordset.MovePrevious 'So the text edited can be stored effectively
into my table

is there a function that does the same action?


Thanks for any suggestion
 
G

Graeme Richardson

Hi, referring to the form containing the record being edited you can use:
Me.Dirty = False

If you have the DAO recordset object then use:
myRecordset.Update

Hope this helps, Graeme.
 
Top