tags:

views:

314

answers:

3

I am creating desktop application using the JDesktopPnae.I complete almost.But when i press ctrl-Alt-Del key it comes out of my application. how can i prevent that action Thanks

+3  A: 

You cannot do that. The behavior of Ctrl-Alt-Delete is enforced by the operating system, for good reasons: it makes sure that you can always bail-out of a faulty application.

Itay
+2  A: 

http://www.codeproject.com/KB/winsdk/AntonioWinLock.aspx

lists several possibilities, from disabling the taskmanager to injecting keyboard hooks. But I doubt there's some built-in java functionality for that.

Wikser
+3  A: 

Ctrl-Alt-Delete cannot be overridden. It is a security feature.

sabbour