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 your current record is CID 37, no matter what CID you select if it
is greater than 37, the form automatically reverts to CID 1 instead of the
selected CID. 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 your current record is CID 37, no matter what CID you select if it
is greater than 37, the form automatically reverts to CID 1 instead of the
selected CID. The code works fine for all other CID's.
Seems pretty weird to me.
Any Ideas?
TIA,
TimJ