CODE
Private Sub Combo38_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Asset_Identification] = " & Str(Nz(Me![Combo38], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Asset_Identification] = " & Str(Nz(Me![Combo38], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
Any one