vote up 0 vote down star

I can find a million examples of doing reg ex to apply syntax highlighting to a rich text box. but what i need it just a simple way to add in a word of a diffrent color.

What would the code be to just put the words "Hello World" into a textbox and have Hello be red and World be green?

This code doesnt work.

this.richTextBox1.SelectionColor = Color.Red
this.richTextBox1.text += "Test"
flag

Are you using VB.Net or C#? – SLaks Nov 5 at 21:35
It's tagged vb.net, and there are no semi-colons... – Meta-Knight Nov 5 at 21:36
...but then, the code uses this instead of Me... confusing! – Meta-Knight Nov 5 at 21:37
Plus, text should be Text. However, all of the OP's other .Net questions are VB, so I assume that this one is too. – SLaks Nov 5 at 21:40
this is vb.net code. i just used the above code as an example its really more like childform.rtbMainText.Text but i just tried to make it simpler. guess i failed at that lol – The Digital Ninja Nov 5 at 21:47

3 Answers

vote up 1 vote down check

Select the text after you put it in and then change the color.

For example:

richTextBox1.Text += "Test"
richTextBox1.Select(richTextBox1.TextLength - 4, 4)
richTextBox1.SelectionColor = Color.Red
link|flag
vote up 0 vote down

This code adds text "Hello" in red color and "World" in green to the RichTextBox (tested in VS2008).

RichTextBox1.SelectionColor = Color.Red
RichTextBox1.SelectedText = "Hello "
RichTextBox1.SelectionColor = Color.Green
RichTextBox1.SelectedText = "World"
link|flag
Why was I downvoted... I tested my code and it works. – Meta-Knight Nov 6 at 17:26
vote up 0 vote down

Ive worked with it in VB6 and i think its the same: You must select the text and then apply

this.richTextBox1.SelectionColor = Color.Red

The added text always appears in the defaut color, you must select it and then change its color:

this.richTextBox1.text="Hello world!"
this.richTextBox1.selstart=0
this.richTextBox1.sellength=5
this.richTextBox1.SelectionColor = Color.Red

As i dont use vb.net, you must check the spelling but i think thats the key. The code i wrote is supposed to print "Hello" in red and "World!" in black.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.