Hi
I'm not sure if it's possible. I wrote a code like this:
listBox1.Items.Add("There are " + countu.ToString().Trim() + " u's");
listBox1.Font = new Font("Arial", 12, FontStyle.Bold);
listBox1.ForeColor = Color.Violet;
listBox1.Items.Add("There are " + j.ToString().Trim() + " vowels");
listBox1.ForeColor = Color.Blue;
When I executed this code, the color of the texts were blue. I would like to have it first "violet" and then the next line of code blue. Is it possible?
Cheers