Found how to do it:

In the key down event for a text or rich text box:

If (e.Control) And (e.KeyCode = Keys.V) Then e.SuppressKeyPress = True


To prevent pasting for all text boxes on your form, set form KeyPreview to true and add the above code to form key down event.