> thanks marius
>
> but the problem is the selection works only once...
> i've a big paragraph in which several words have to be in different
> colors.. how do i accomplish this?
rtx.Clear();
rtx.Text = "There is life on Mars";
rtx.Select(9,4);
rtx.SelectionColor = Color.Red;
rtx.SelectionFont = new Font(rtx.SelectionFont, FontStyle.Bold);
rtx.Select(17,4);
rtx.SelectionColor = Color.Blue;
rtx.SelectionFont = new Font(rtx.SelectionFont, FontStyle.Bold);
MH