Hi I have an app that is written in Swing, awt. I want to prevent users from pasting values into the textfields. is there any way to do this without using action listeners?
|
feedback
|
|
The best way is to remove action associated with CTRL+V keystroke in components ActionMap. | |||
|
feedback
|
|
Or you can:
The | |||
|
feedback
|
|
You can just call setTransferHandler with a null parameter like this:
This will disable all copy/paste actions on the field. | |||
|
feedback
|
|
The simplest way it to say: This disables cut & paste, but copy is still enabled. | ||||
feedback
|