So I've had the problem with not being able to get dgdk to register a key press... I searched the forms and discovered this has to do with the focus of the control.
So, I set my fMain to register key_down, and Key_Up events.
In the respective subs, I checked the scan code of the key and sent it to my Application class. All is good and done.
Until I realize that I'm working with a single key code per event.
Long winded introduction aside, is there anyway to get the values of each code pressed? I want to control a model with my arrows keys, and this requires at least two keys operatable at a time. I also want to have form controls in my App, so removing the form is not really a solution.
Thanks!