Posts: 1,271
Threads: 399
Joined: Mar 2003
on my german keyboard i can't use the print key as trigger.
i tried
(0x2A)
VK_PRINT 0x2A PRINT key
and
(0x2C)
VK_SNAPSHOT 0x2C PRINT SCREEN key
any idea ?
Posts: 12,086
Threads: 142
Joined: Dec 2002
Windows does not pass it to hook function.
Posts: 1,271
Threads: 399
Joined: Mar 2003
Gintaras Wrote:Windows does not pass it to hook function.
???
i can send with strokeit (mouse gesture program) a print signal,
so strokeits signal seems to be a second hand signal -
sending (44) ?
right ?
???
Posts: 12,086
Threads: 142
Joined: Dec 2002
QM installs keyboard hook procedure which intercepts keyboard messages when Windows posts them to active window. Windows does not notify active window about some keys: PrintScreen (44), Alt+Tab, global hot-keys registered by other applications, etc.
Macro programs use low-level function keybd_event to simulate key press so that it goes through Windows.