I guess you need to walk before you run. I am trying to intercept the D-Pad key presses so I can hop around controls in a form. I have tried using ControlName_KeyPress (SpecialKey) but when I compile and run it on the PPC, nothing happens. I suspect this need is common but I can't find an example on the forum (not looking hard enough?). Can this be used for DPad navigation?
Thanks, Dave
Sub Globals
'Declare the global variables here.
End Sub
Sub App_Start
Form1.Show
form1.Focus
End Sub
Sub ControlName_KeyPress (SpecialKey)
Msgbox (SpecialKey)
End Sub
Thanks, Dave
Sub Globals
'Declare the global variables here.
End Sub
Sub App_Start
Form1.Show
form1.Focus
End Sub
Sub ControlName_KeyPress (SpecialKey)
Msgbox (SpecialKey)
End Sub