I am using this code to add a key down handler:
application.AddOnKeyDownHandler(@form1.AKeyDown);This works fine, AKeyDown fires whenever a key is pressed.
I also want to know when it is released, but there is not a function (Like: application.AddOnKeyUpHandler) to do this with.
Is there another way to detect keys being released?