ChrisRChamberlain
Programmer
Would like to know the INKEY() or LASTKEY() return values for:-
Shift + Left Mouse
Ctrl + Left Mouse
TIA
Chris
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#DEFINE VK_SHIFT 0x10
DECLARE INTEGER GetKeyState IN WIN32API INTEGER
IF INKEY(0,'M') = 151 AND (GetKeyState(vk_Shift)<0)
Messagebox('User pressed Shift+Left Mouse',0,'Wazzzup!')
endif