I want to change the text color programmatically.
eg;
textBox1.Forecolor = Color.Red;
textBox1.AppendText("Red Text/n");
textBox1.Forecolor = Color.Green;
textBox1.AppendText("Green Text/n");
The problem is, this changes the entire text to green where I want to have the two different lines in two different colors.
Can someone help?