Update Method Example

This example changes the Title field in the current record of a data control, and uses the Update method to save the changes.

Data1.Recordset.Edit                             ' Enable editing.
Data1.Recordset.Fields("Title") = "My Right Foot" ' Change title.
Data1.Recordset.Update                           ' Save changes.