I think you do not need ask me what i need exactly cuz all says title.
I hope someone will know how to solve this problem for my project which i can't find out how to fix the problem i have only this small peace of code which does a bit of my work but do not hightlight items as i type from textbox.
Here is:
This one find extact items in listbox when i type but it does not hightlight them only add to listbox1 items extact as it found.
While ListBox1.FindStringExact(TextBox1.Text) <> -1
ListBox1.Items.Remove("")
End While
And this one find extact items as i type from textbox but do not hightlight them too.
For Each Itm As String In ListBox1.Items If Itm.Contains(TextBox1.Text) Then ListBox2.Items.Add(Itm) End If Next
how do i fix this problem and hightlight all matching found items in listbox as i type from textbox ?
Thanks.

New Topic/Question
Reply



MultiQuote








|