Hi All,

What I'm trying to do is to change the Forecolor of each letter in a RichtextBox.

I can already change the ForeColor but that's for all of the Text and not for each letter.

This is what I've got:

VB Code:
  1. If ColorDialog1.ShowDialog <> DialogResult.Cancel Then
  2.                     RichTextBox1.ForeColor = ColorDialog1.Color
  3.  
  4.                 End If

Thanks in advance,

sparrow1