Hey Guys,
I'm having an issue with this code...
Basically when I come to an individual in two different dbs - it only displays the first one and halts the use of the next button. Meaning...
Column 1 Column 2
DuMont, Kyle 123
DuMont, Kyle 456
It won't let me go to the next record in the list - it remains on the first one.
Is the code off/do I need to add anything to make this work?
Thanks for any help!
I'm having an issue with this code...
Code:
Private Sub Find_Next_Patient()
PatientName.SetFocus
If PatientName.ListIndex <> PatientName.ListCount - 1 Then
PatientName.ListIndex = PatientName.ListIndex + 1
Else
PatientName.ListIndex = 0
End If
End Sub
Column 1 Column 2
DuMont, Kyle 123
DuMont, Kyle 456
It won't let me go to the next record in the list - it remains on the first one.
Is the code off/do I need to add anything to make this work?
Thanks for any help!