T
TimJ
I am trying to navigate through records on a form w/a combo box.
I have this code running in the combo box.
Dim rs As Object
FilterOn = False
Set rs = Me.Recordset.Clone
rs.FindFirst "[CID] = " & Str(Me![cboCandNo])
Me.Bookmark = rs.Bookmark
cboCandNo is a list of all CID's
For example CID's 1-100
Any time you select CID 37, no matter what CID you select, the form
automatically jumps to CID 45. The code works fine for all other CID's.
Seems pretty weird to me.
Any Ideas?
TIA,
TimJ
I have this code running in the combo box.
Dim rs As Object
FilterOn = False
Set rs = Me.Recordset.Clone
rs.FindFirst "[CID] = " & Str(Me![cboCandNo])
Me.Bookmark = rs.Bookmark
cboCandNo is a list of all CID's
For example CID's 1-100
Any time you select CID 37, no matter what CID you select, the form
automatically jumps to CID 45. The code works fine for all other CID's.
Seems pretty weird to me.
Any Ideas?
TIA,
TimJ