Disable a Textbox default context menu

  • Thread starter Thread starter Roidy
  • Start date Start date
R

Roidy

How do I disable the default contextmenu on a Textbox? I want a user to be
able to right click a textbox and have an action happen but even if I set
the contextmenustrip property for the textbox to (none) I still get the
default copy/paste menu, how do I completely disable it.

Thanks
Robert
 
Am 30.05.2010 21:44, schrieb Roidy:
How do I disable the default contextmenu on a Textbox?

\\\
Me.TextBox1.ContextMenu = New ContextMenu()
///
 
Back
Top