Hi All,
Windows 95 and Windows 98 Applications can enable and
disable ALT+TAB and CTRL+ESC; for example, by calling
SystemParametersInfo (SPI_SETSCREENSAVERRUNNING). To
disable ALT_TAB and CTRL+ESC set the uiParam parameter to
TRUE or FALSE to enable the keys.
The issue is the function also disable other hotkeys
defined in my application, for example ctrl+d etc.
My question is how could I make user defined key enalbled
and same time disable ALT+TAB and CTRL+ESC .
Thanks
Disables task switching SystemParametersInfo
(SPI_SETSCREENSAVERRUNNING, TRUE, &nPreviousState, 0);
Enables task switching SystemParametersInfo
(SPI_SETSCREENSAVERRUNNING, FALSE, &nPreviousState, 0);
.
Windows 95 and Windows 98 Applications can enable and
disable ALT+TAB and CTRL+ESC; for example, by calling
SystemParametersInfo (SPI_SETSCREENSAVERRUNNING). To
disable ALT_TAB and CTRL+ESC set the uiParam parameter to
TRUE or FALSE to enable the keys.
The issue is the function also disable other hotkeys
defined in my application, for example ctrl+d etc.
My question is how could I make user defined key enalbled
and same time disable ALT+TAB and CTRL+ESC .
Thanks
Disables task switching SystemParametersInfo
(SPI_SETSCREENSAVERRUNNING, TRUE, &nPreviousState, 0);
Enables task switching SystemParametersInfo
(SPI_SETSCREENSAVERRUNNING, FALSE, &nPreviousState, 0);
.