Click here to Skip to main content
15,921,062 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to set the focus to the next cell in same row in datagridview?
Posted
Updated 27-May-11 0:27am
v2

1 solution

DataGridView1.CurrentCell = DataGridView1.Item(1, 5)
 'or
DataGridView1.CurrentCell = DataGridView1.Item("ColumnName", 5)


This example was taken from Setting cell focus datagridview[^]

But google threw up this list of possibles too Google: vb.net datagridview cell focus[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900