Keyboard scancodes. - Printable Version +- QB64 Phoenix Edition (https://staging.qb64phoenix.com) +-- Forum: QB64 Rising (https://staging.qb64phoenix.com/forumdisplay.php?fid=1) +--- Forum: Code and Stuff (https://staging.qb64phoenix.com/forumdisplay.php?fid=3) +---- Forum: Help Me! (https://staging.qb64phoenix.com/forumdisplay.php?fid=10) +---- Thread: Keyboard scancodes. (/showthread.php?tid=1650) |
Keyboard scancodes. - eoredson - 04-30-2023 Hi, I have been using the following keyboard scancodes for awhile, but I can't get it to detect Ctrl-Alt-Delete at all: Code: (Select All) Print "Test keyboard scancodes. Press <Esc> to quit" RE: Keyboard scancodes. - SMcNeill - 04-30-2023 Ctrl-Alt-Delete is a system reserved key combo usually. RE: Keyboard scancodes. - eoredson - 05-01-2023 Yes, Ctrl-Alt-Del is trapped by the SAS event which in turn calls the Gina.dll library. The only way to trap your own event is by re-writing the Gina library. Erik. SAS is the secure attention sequence. https://msdn.microsoft.com/en-us/library/aa375457(v=vs.85).aspx |