Place an unbound control (a control where a ControlSource is not
specified) on the form and add the code below to the form. As long as
the record that you're looking for is returned by the forms recordset,
it'll work.
Private Sub [controlName]_AfterUpdate()
Me.FilterOn = False
Me.Filter = "lngTransportId = " & Me.txtGotoRecord
Me.FilterOn = True
End Sub