How? I have the following:
but I want to add a "CTRL + C" shortcut after it, and be able to actually cut the text using CTRL + C. Any help would be greatly appreciatedVB Code:
Dim rtbContextMenu As New ContextMenu() Dim mymenuitem As MenuItem mymenuitem = rtbContextMenu.MenuItems.Add("Copy") AddHandler mymenuitem.Click, AddressOf myCopy_Click![]()


Reply With Quote