I have a Access Database in which I look for registered users
When I perform a search, it generates results, when I click to see the information, it does not generate any of the information I added.
This is the macro that executes the search procedure.
Option Compare Database
Private Sub Comando122_Click()
Lista123.Requery
End Sub
Private Sub Lista123_AfterUpdate()
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[id] = " & Str(Nz(Me![Lista123], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub