Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable the Ctrl-Alt-Delete event through Java program

I am creating a desktop application using the JDesktopPane. I'm almost complete, but when I press ctrl + alt + del, it leaves my application. How can I prevent that action?

like image 638
Arivu2020 Avatar asked Apr 11 '10 07:04

Arivu2020


1 Answers

Fact is Alt+Ctrl+Del never actually entering your application. Os traps Alt+Ctrl+Del before it is send to your application. So you can't trap it.

like image 83
Thomas Abraham Avatar answered Sep 30 '22 16:09

Thomas Abraham