Hello guys. I've found a new problem. I'm using an string array ( unidimensional: Important[] ), and a RichtextBox Text.
Let's say, my rich text box is: 1 january 1852 - In this year, Eugene-Antole Demarcay was born.
Ok, i want like Eugene-Antole Demarcay to have it's color red, and I did:
for (int i = 0; i < Important.Length; i++)
{
richTextBox1.Find(Important[i], RichTextBoxFinds.MatchCase);
richTextBox1.SelectionColor = Color.Red;
}
richTextBox1.SelectionStart = 0;
Ok, and my text looks now: 1 january 1852 - In this year, Eugene-Antole Demarcay was born., but i have a new problem, look at photo: http://img191.imageshack.us/img191/2704/phototb.png
That blue background color, i don't want it ...