Click here to Skip to main content
15,907,183 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to delete particular datagrid row from datagrid

and how to get the particular item value in vb.net

give me answer as soon as possible sir.
Posted
Updated 24-Feb-12 1:01am

1 solution

Hai,

To remove a particular row in a datagridview.
DataGridView1.Rows.RemoveAt(10)
To Get the particular item of a value
DataGridView1.Rows(4).Cells(0).Value
 
Share this answer
 

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