Right click on RichTextBox no menu

When I right click on an instance of aRichTextBox control no menu pops up.

The standard (like cut and past) operations will be extremely useful.

Is there someone that knows if there is a property I need to set to enable the right click menu?
Is it maybe not yet implemented on the RichTextBox control?

Any feedback will be appreciated.

Regards
Herman

[427 byte] By [HermanduPlessis] at [2007-12-16]
# 1

I think you need to do it . No default context menue for the Ritch Textbox

Eisa at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 2
Hi,
thats not dificult at all. Add you own ContextStripeMenu to the richtextbox. Make two MenuItems with cut and paste and add this code:

private void cutToolStripMenuItem_Click(object sender, EventArgs e)
{
richTextBox1.Cut();
}
private void pasteToolStripMenuItem_Click(object sender, EventArgs e)
{
richTextBox1.Paste();
}

rgerbig at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 3
Don't forget, also, to assign the context menu to your RichTextBox.
durstin at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...