I got this figured out somewhat.
What I did was add a select query to the row source of my text box and then use some VBA to make it refresh.
Code:
Private Sub Combo_AfterUpdate()
Me.lstResults.Requery
End Sub
The problem I am having now is trying to add an "ALL" to my combo box that selects all records, but I will start another thread for that.
Thanks
Ron