Dim x As Integer
Dim lstCount as Integer
lstCount = Me.lstItems.ListCount
For x = 0 To lstCount - 1
If Me.lstItems.ItemData(x) Like Me.txtSearch & "*" Then
Me.lstItems.Selected(x) = True
'Call your code that moves this item
'to the adjacent text box
'Then, since items in list are unique,
'there is no need to search the rest of the
'list, so Exit the for loop
Exit For
End If
Next x
Me.lstItems = Null
Me.txtSearch = Null
Me.txtSearch.SetFocus