I have already a statement like :
Code: Select all | Expand
SET KEY VK_F9 TO TestProc
But how can I use this command to connect a procedure to SHIFT-F9 ?
Thanks.
Code: Select all | Expand
SET KEY VK_F9 TO TestProc
Code: Select all | Expand
procedure TestProc
if GetKeyState( VK_SHIFT )
... your code ...
endif
return
Code: Select all | Expand
SETKEY( VK_F9 , {|| if(GetKeyState( VK_SHIFT ), IntMail(), if(GetKeyState( VK_CONTROL ), LogBook(), VcRms() ) ) } )