G Guest Mar 27, 2005 #1 How do we disable/hide the shortcut menu (Undo, Cut, Copy, Past, Select All) which pops up when a user right clicks on textbox control ?
How do we disable/hide the shortcut menu (Undo, Cut, Copy, Past, Select All) which pops up when a user right clicks on textbox control ?
H Herfried K. Wagner [MVP] Mar 27, 2005 #2 patang said: How do we disable/hide the shortcut menu (Undo, Cut, Copy, Past, Select All) which pops up when a user right clicks on textbox control ? Click to expand... Add a contextmenu component to the form (without items) and assign it to the textbox' 'ContextMenu' property.
patang said: How do we disable/hide the shortcut menu (Undo, Cut, Copy, Past, Select All) which pops up when a user right clicks on textbox control ? Click to expand... Add a contextmenu component to the form (without items) and assign it to the textbox' 'ContextMenu' property.
O OHM \( Terry Burns \) Mar 27, 2005 #3 Dim dummy As New ContextMenu TextBox1.ContextMenu = dummy ** Slick Huh ** OHM ( Terry Burns ) http://TrainingOn.net
Dim dummy As New ContextMenu TextBox1.ContextMenu = dummy ** Slick Huh ** OHM ( Terry Burns ) http://TrainingOn.net