[ Duke Nukem @ 22.12.2004. 17:31 ] @
Ima li neko ideju kako bi klasicna Borland C++ windows aplikacija sprecila svoje zatvaranje kombinacijom tastera Ctrl + Esc ili Alt + F4
[ NastyBoy @ 22.12.2004. 18:30 ] @
Preklopi OnCloseQuery forme i setuj CanClose = false
[ Duke Nukem @ 22.12.2004. 20:18 ] @
Hvala, vrlo jednostavno potpuno sam zaboravio na CloseQuery ali to je resilo samo problem Alt + F4, ali ostaje pitanje kako zablesaviti dugme Start ( Ctrl + Esc)
Trebalo bi da aplikacija bude maksimalno prioritetna tj naagovoriti windows da ne pokrece Start meni i ostale programe uporedno sa njim.
[ NastyBoy @ 22.12.2004. 23:04 ] @
Evo shta kazhe MSDN :

SYMPTOMS
------------
CTRL+ESC and ALT+TAB task switching cannot be disabled by an application running under Windows NT.

CAUSE
-------
A primary reason for this change is to avoid dependence on an application for processing of these key combinations. This way a hung application can be switched away from by using either CTRL+ESC or ALT+TAB.

RESOLUTION
-------------
You can disable CTRL+ESC on a system-wide basis by replacing the NT Task Manager. This is not recommended.

You can disable ALT+TAB and ALT+ESC while a particular application is running if that application registers hotkeys for those combinations with Register HotKey().

Another mechanism to disable these key combinations, as well as the newer Windows key, is to use a low level keyboard hook (WH_KEYBOARD_LL). This hook is available on Windows NT 4.0 Service Pack 3 and later. The low level keyboard hook can also detect CTRL+ALT+DEL, but it cannot disable it.

STATUS
--------
This behavior is by design.


To isto sam probao pre par godina, i radi posao. Samo dobro pogledaj kako registrovati Key-hook i to je to