Code:
dim strSearch as string
strsearch = txtsearch.Text
For i = 0 To List1.ListCount - 1
If List1.List(i) = strsearch Then
MsgBox List1.List(i) & " " & List2.List(i)
exit for  '~~~~> escape from the loop
End If
Next i