mrchinchin25
IS-IT--Management
I'm trying to fix a database with a missing library problem. who can tell me what this code does in english? (i'm hopeless at recordsets)
Private Sub Combo8_AfterUpdate()
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Me![Combo8])
Me.Bookmark = rs.Bookmark
End Sub
"Combo8" is the combo box where you select a value.
I'm especially interested in the "Str(Me![Combo8])" part as the code says it can't find the project/library.
Thanks
Private Sub Combo8_AfterUpdate()
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Me![Combo8])
Me.Bookmark = rs.Bookmark
End Sub
"Combo8" is the combo box where you select a value.
I'm especially interested in the "Str(Me![Combo8])" part as the code says it can't find the project/library.
Thanks