Copies the current record from an updatable Recordset object to the copy buffer for subsequent editing. Syntax recordset.Edit The recordset placeholder represents an open, updatable Recordset object that contains the record you want to edit. Remarks Once you use the Edit method, changes made to the current record's fields are copied to the copy buffer. After you make the desi...[ 查看全文 ]
'This example uses the Edit method to replace the current data with the 'specified name. The EditName procedure is required for this procedure to run. Sub EditX() Dim dbsNorthwind As Database Dim rstEmployees As Recordset Dim strOldFirst As String Dim strOldLast As String Dim strFirstName As String Dim strLastName As String Set dbsNorthwind = OpenDatabase("Northwind.md...[ 查看全文 ]