View Single Post
Old 03-02-2006, 05:19 AM   #2 (permalink)
PUN1SH3R
Registered User
 
PUN1SH3R's Avatar
 
Join Date: Mar 2006
Location: Ontario, Canada
Posts: 5
PUN1SH3R is on a distinguished road
What you can do is for the KeyDown event of the datagrid you can capture the Tab key by using the following code.

Code:
If e.KeyCode = Keys.Tab Then

    'Move down instead of across.

End If
PUN1SH3R is offline   Reply With Quote