How to "thoroughly" closes the TEXTBOX's right-click menu?
Getting TextBox's ContextMenu an empty menu, right click on TextBox, but the default menu is not coming, but if you click Right-click, press and hold, move the mouse to TextBox, release, the default menu Bounce. This is a question of a netizen, I use C # and VB.NET to do a way to achieve, as follows:
WM_CONTEXTMENU = 0x007b; // Send this when a user is clicked in a window.
C #: using system.drawing; using system.windows.form;
Namespace ManuApp {///
Protected Overrides Sub WndProc (Byref M As System.windows.Forms.Message) IF M.MSG <> & H7b Then
MyBase.WndProc (M) end if End Subend Class