private void buttonBold_Click(object sender, EventArgs e)
{
Font
oldFont;
Font newFont;
oldFont = this.richTextBoxText.SelectionFont;
if (oldFont.Bold)
//newFont = new Font(oldFont, oldFont.Style &
~FontStyle.Bold);
newFont = new Font(oldFont,oldFont.Style & ~FontStyle.Bold);
else
newFont = new Font(oldFont, oldFont.Style | FontStyle.Bold);
this.richTextBoxText.SelectionFont = newFont;
// this.richTextBoxText.Focus();
this.richTextBoxText.Focus();
}