V
Vinay
Hi,
Can I enforce Return key to behave like a TabKey ?
I am using the following KeyPress down event for my
control:
Private Sub Navigate(ByVal sender As Object, ByVal e As
System.Windows.Forms.KeyPressEventArgs)
Try
Select Case e.KeyChar
Case vbCrLf
e.Handled = True
'CType(sender, TextBox).Focus()
End Select
Catch oEX As Exception
Call MsgBox(oEX.Message)
Finally
End Try
End Sub
Can I enforce Return key to behave like a TabKey ?
I am using the following KeyPress down event for my
control:
Private Sub Navigate(ByVal sender As Object, ByVal e As
System.Windows.Forms.KeyPressEventArgs)
Try
Select Case e.KeyChar
Case vbCrLf
e.Handled = True
'CType(sender, TextBox).Focus()
End Select
Catch oEX As Exception
Call MsgBox(oEX.Message)
Finally
End Try
End Sub