Hi Guys
Here is the scenario I want to be able to filter similar words from a search in a text box to items which are in a array then this populates the filter into a list box
For example if the text box contains Tes it would bring up a record like Test + I don't want it to be caps sensitive
Here is what I have so far
Which populates it will equal to data but I want similar
Anyone have any ideas
Cheers
Dave
Here is the scenario I want to be able to filter similar words from a search in a text box to items which are in a array then this populates the filter into a list box
For example if the text box contains Tes it would bring up a record like Test + I don't want it to be caps sensitive
Here is what I have so far
VB.NET:
If searchbar.Text = item.name(counter) Then frmFilteredList.ListView1.Items.Add(item.ID(counter))
frmFilteredList.ListView1.Items(frmFilteredList.ListView1.Items.Count - 1).SubItems.Add(item.name(counter))
frmFilteredList.ListView1.Items(frmFilteredList.ListView1.Items.Count - 1).SubItems.Add(item.code(counter))
frmFilteredList.ListView1.Items(frmFilteredList.ListView1.Items.Count - 1).SubItems.Add(item.totalquantity(counter))
frmFilteredList.ListView1.Items(frmFilteredList.ListView1.Items.Count - 1).SubItems.Add(item.price(counter))
End If
Which populates it will equal to data but I want similar
Anyone have any ideas
Cheers
Dave