Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Gilt für: Access 2013, Office 2013
Gibt ein Lesezeichen zurück, das den zuletzt hinzugefügten oder geänderten Datensatz angibt.
Syntax
Ausdruck . LastModified
Ausdruck Eine Variable, die ein Recordset-Objekt darstellt.
Bemerkungen
You can use the LastModified property to move to the most recently added or updated record. Use the LastModified property with table- and dynaset-type Recordset objects. A record must be added or modified in the Recordset object itself in order for the LastModified property to have a value.
Beispiel
In diesem Beispiel wird die LastModified-Eigenschaft verwenden, um den aktuellen Datensatzzeiger zu einem geänderten und neu erstellten Datensatz zu verschieben.
Public Sub LastModifiedDemo()
Dim Northwind As DAO.Database
Dim Employees As DAO.Recordset
Dim CurrentFirstName As String
Dim CurrentLastName As String
Set Northwind = OpenDatabase("Northwind.mdb")
Set Employees = Northwind.OpenRecordset("Employees", dbOpenDynaset)
With Employees
' Store current data.
CurrentFirstName = !FirstName
CurrentLastName = !LastName
' Modify the data in the current record.
.Edit
!FirstName = "Julie"
!LastName = "Warren"
.Update
' Move the current record pointer to the most recently
' modified or added record.
.Bookmark = .LastModified
Debug.Print _
"Data in LastModified record after Edit: " & _
!FirstName & " " & !LastName
' Restore the original data because this is a demonstration.
.Edit
!FirstName = CurrentFirstName
!LastName = CurrentLastName
.Update
' Add new record.
.AddNew
!FirstName = "Roger"
!LastName = "Harui"
.Update
' Move the current record pointer to the most recently
' modified or added record.
.Bookmark = .LastModified
Debug.Print _
"Data in LastModified record after AddNew: " & _
!FirstName & " " & !LastName
' Delete the new record because this is a demonstration.
.Delete
.Close
End With
Set Employees = Nothing
Northwind.Close
Set Northwind = Nothing
End Sub
In diesem Beispiel wird die AddNew-Methode zum Erstellen eines neuen Datensatzes mit dem angegebenen Namen verwendet. Der AddName-Untername ist erforderlich, damit diese Prozedur ausgeführt werden kann.
Public Sub AddNewDemo()
Dim Northwind As DAO.Database
Dim Employees As DAO.Recordset
Dim FirstName As String
Dim LastName As String
Set Northwind = OpenDatabase("Northwind.mdb")
Set Employees = Northwind.OpenRecordset("Employees", dbOpenDynaset)
' Get data from the user.
FirstName = Trim(InputBox("Enter first name:"))
LastName = Trim(InputBox("Enter last name:"))
' Proceed only if the user actually entered something
' for both the first and last names.
If FirstName <> "" And LastName <> "" Then
' Call the sub that adds the record.
AddName Employees, FirstName, LastName
' Show the newly added data.
With Employees
Debug.Print _
"New record: " & !FirstName & " " & !LastName
' Delete the new record because this is a demonstration.
.Delete
End With
Else
MsgBox _
"You must input values for both first and last name.", _
vbInformation + vbOKOnly, _
"Add new name"
End If
Employees.Close
Set Employees = Nothing
Northwind.Close
Set Northwind = Nothing
End Sub
Public Sub AddName( _
ByRef Records As DAO.Recordset, _
ByVal FirstName As String, _
ByVal LastName As String)
' Adds a new record to a Recordset using the data
' passed by the calling procedure.
' The new record is then made the current record.
With Records
.AddNew
!FirstName = FirstName
!LastName = LastName
.Update
.Bookmark = .LastModified
End With
End Function