Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Combo175_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.Find "[TM#] = " & Str(Nz(Me![Combo175], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
mdb or adp ? Seems like ADO syntax.PHV said:Any chance you could post the [highlight]whole error message[/highlight], which [highlight]line of code is highlighted[/highlight] by the debugger
[blue] Dim rs As DAO.Recordset
Set rs = Me.RecordsetClone
rs.Find "[TM#] = '" & Me![Combo175] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark[/blue]