Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to use up and down arrow for tab order between contr
Message
From
05/04/2011 22:20:42
 
 
To
04/03/2011 01:38:23
Yim Ming Sun Derek
Spacious Design Consultant
Hong Kong, Hong Kong
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
VB 8.0
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Desktop
Miscellaneous
Thread ID:
01502605
Message ID:
01506210
Views:
36
>I want to use the up and down arrow key to replace the TAB and Shift Tab Key
>for move the cursor between the control on a Form.

You can use the form key press event handler such as:
Private Sub Form1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles MyBase.KeyPress
     If e.KeyCode = Something Then 
        Simulate TAB or Shift Tab key here
     End If 
End Sub 
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Previous
Reply
Map
View

Click here to load this message in the networking platform