trying to figure out how I can search for a string in my arrays. As of now, I only figured out how to search through integers. My array is like this:
Dim IDno() As String = {264, 951, 357}
Dim author() As String = {"Peter", "Nathan", "Sandy"}
So as of now, if someone types in the number 951, my listbox will display:
ID#: 951
Name: Nathan
I want to know how I can allow users to search for names instead and it will display the ID# and the Name.