Author
Need to restrict ctrl+c, ctrl+v, ctrl+x
Subbarao Kondabala
Greenhorn
Joined: May 17, 2005
Posts: 26
Hi,
In my text field I want to restrict ctrl+c, ctrl+v, ctrl+x. How can I do this in swings.
Please help me
Thanks in advance
Subbarao Kondabala
Thanks and Regards,
Subbarao Kondabala
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8436
A text field can be disabled. Swing (not swings) provides the capability to sense keyboard events.
Putting these two facts together, how do you think this particular problem should be approached?
[Donate a pint, save a life! ] [How to ask questions ] [Onff-turn it on! ]
Michael Dunn
Ranch Hand
Joined: Jun 09, 2003
Posts: 4632
posted Jul 08, 2009 13:49:45
0
> In my text field I want to restrict ctrl+c, ctrl+v, ctrl+x. How can I do this in swings.
the simple way is to override cut() copy() paste(), to do nothing
Rob Camick
Ranch Hand
Joined: Jun 13, 2009
Posts: 1788
Remove the Key Bindings from the InputMap .
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8436
Michael Dunn wrote:
the simple way is to override cut() copy() paste(), to do nothing
I was not even aware of these methods!!! Guess I need to go back to school. Doh!
Subbarao Kondabala
Greenhorn
Joined: May 17, 2005
Posts: 26
Thanks so much Michael
It got worked
Once again thank you so much
Subbarao kondabala
subject: Need to restrict ctrl+c, ctrl+v, ctrl+x