View Single Post
  #1 (permalink)  
Old 05-01-2008, 12:50 AM
Dave Mitchell's Avatar
Dave Mitchell Dave Mitchell is offline
Newbie
 
Join Date: Mar 2008
Posts: 8
Default D-Pad Navigation

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
Reply With Quote