I'm trying to do this..



I Took the a screenshot of my program and fixed it up in photoshop what i'm trying to do. See the yellow highlight and and the orange text? well i'm trying to do either one of those but i'm not sure if it's possible to do.

What i'm trying to do is when text is entered in textbox1, it will highlight or bold and color every word that has the word that is in textbox1 in listview1

Here is the code i'm trying to do this with, but it changes the whole words for color instead of just that word in textbox.

vb.net Code:
  1. For Each sKey As ListViewItem In Me.ListView2.Items
  2.             If sKey.SubItems(0).Text.StartsWith(Me.SeedKW.Text) Then
  3.                 sKey.SubItems(0).ForeColor = Color.Aqua
  4.             End If
  5.         Next