N
None
How do i write lines with different colors in a textbox?
I've tried using the forecolor property and it just takes the last
color.
eg.
TextBox1.ForeColor = Color.Red
TextBox1.Text = "test" & " "
TextBox1.ForeColor = Color.Purple
TextBox1.Text &= "test2"
It prints both test and test2 in purple
I've tried using the forecolor property and it just takes the last
color.
eg.
TextBox1.ForeColor = Color.Red
TextBox1.Text = "test" & " "
TextBox1.ForeColor = Color.Purple
TextBox1.Text &= "test2"
It prints both test and test2 in purple