Home › Forums › General XMetaL Discussion › Override the paste CTRL+V shortcut keys in XMAX 5.5 › Reply To: Override the paste CTRL+V shortcut keys in XMAX 5.5
Reply to: Override the paste CTRL+V shortcut keys in XMAX 5.5
March 31, 2016 at 8:07 pmfrom the xmax control _PreviewKeyDown event:
If e.KeyCode = Keys.V And e.Modifiers = Keys.Control Then
e.IsInputKey = True
End If
from the form _KeyDown event:
If e.KeyCode = Keys.V And e.Modifiers = Keys.Control Then
e.Handled = True
gobjCurrentWrapper.ProtPaste()