Can't post the whole form...But here is what I do moving from record to record (works fine)

VB Code:
  1. Private Sub cmdNext_Click()
  2.      rsWorkerForm.MoveNext
  3.      Form_Current
  4. End Sub

And here is what I am doing when I click the combobox and attempt to move over a record

VB Code:
  1. Private Sub ID_Click()
  2.      newValue = ID.Text
  3.      ID.Value = oldValue
  4.      Do Until rsWorkerForm.Fields("ID") = newValue
  5.           If newValue > oldValue Then
  6.               Dunno = True
  7.               rsWorkerForm.MoveNext
  8.           ElseIf newValue < oldValue Then
  9.               Dunno = True
  10.               rsWorkerForm.MovePrevious
  11.           End If
  12.      Loop
  13.      Dunno = False
  14.      Form_Current
  15. End Sub

The snippet directly above errors.