i'm sure this has been asked before, but i couldn't quite find the answer. i'm using an access 2003 ADP project to connect to a sql server 2000 db. i have a form which displays records and i also have a combo box that links to the primary key for the records. i want the user to be able to navigate sequentially using the standard access navigation controls, but i also want the user to be able to jump to records using the combo box. to this end, i thought to use the forms recordset with the "find" method. however, this isn't causing the form to navigate to selected record. i don't want to use "filter" because the user would then no longer be able to navigate sequentially.
here's the code...
here's the code...
Code:
Private Sub cbxSectionSelect_AfterUpdate()
Dim rst As ADODB.Recordset
Dim recordID As Integer
Set rst = Me.Recordset
recordID = Me.sectionID
rst.MoveFirst
rst.Find "sectionID = " & recordID
rst.Close
End Sub