I have searched all over for this one....
I have foundout how to highlight one word but each instance of a word...
This will find the first instance of the word and Highlight it but how can I get
every instance of the word within the rtb1 text and highlight them?
I have found 3rd party controls but surely this can be done without them!
vbMarkO
I have foundout how to highlight one word but each instance of a word...
Visual Basic:
rtb1.Find("Line", RichTextBoxFinds.MatchCase)
rtb1.SelectionBackColor = Color.Yellow
This will find the first instance of the word and Highlight it but how can I get
every instance of the word within the rtb1 text and highlight them?
I have found 3rd party controls but surely this can be done without them!
vbMarkO