WHAT IS THE HOTKEYS SYNTAX FOR NUMPADS - DEV-C++
i am very new in c++ dimension... my situation is, i want my applications closed when hit numpad 1... " if(GetAsyncKeyState('VK_NUMPAD1') " not working at all (it won't closing)... but when use capital letter as " if(GetAsyncKeyState('C'), it works fine... what exactly the syntax to use numpads as hotkey?...
VK_NUMPAD0 - 9, no qoutes
Don't wrap VK_NUMPAD1 with those quotes.