Hello:
I'm tring to make the down arrow act as a tab key and the up arrow act as
like (-TAB.).
I have this for the down arrow but nothing happens.
Protected Overrides Function ProcessDialogKe y(ByVal keyData As Keys) As
Boolean
MyBase.ProcessD ialogKey(keyDat a)
If keyData = System.Windows. Forms.Keys.Down Then
keyData = System.Windows. Forms.Keys.Tab
End If
End Function
TIA
Bob
I'm tring to make the down arrow act as a tab key and the up arrow act as
like (-TAB.).
I have this for the down arrow but nothing happens.
Protected Overrides Function ProcessDialogKe y(ByVal keyData As Keys) As
Boolean
MyBase.ProcessD ialogKey(keyDat a)
If keyData = System.Windows. Forms.Keys.Down Then
keyData = System.Windows. Forms.Keys.Tab
End If
End Function
TIA
Bob
Comment