A couple of RichTextBox questions

  • Thread starter Thread starter Michael A. Covington
  • Start date Start date
M

Michael A. Covington

In a RichTextBox, how would I implement...

....bulleted paragraphs like in Word? Is there a provision for this or am I
on my own?

....spelling check? Presumably using COM to communicate with Word which is
installed on the same machine. I know how to do it myself on a low level
and am wondering if there are public-domain spelling dictionaries.

Thoughts, anyone?
 
In a RichTextBox, how would I implement...

...bulleted paragraphs like in Word? Is there a provision for this or am
I on my own?

Try:

void tsbtnBullet_CheckedChanged(object sender, EventArgs e)
{
rtfMain.SelectionBullet = tsbtnBullet.Checked;
}

You don't have so much control over the bullet style from memory, it's a
long time since I wrote this code :-)
 
Jeff Gaines said:
Try:

void tsbtnBullet_CheckedChanged(object sender, EventArgs e)
{
rtfMain.SelectionBullet = tsbtnBullet.Checked;
}

You don't have so much control over the bullet style from memory, it's a
long time since I wrote this code :-)

Thanks!
 
Back
Top