Click here to Skip to main content
15,899,679 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to edit data record in datagridview using c# .net for windows application
Posted

 
Share this answer
 
v2
 
Share this answer
 
u can use CellEndEdit event of data gridview to fire that event after u done editing particular cell..
 
Share this answer
 
Hi Ashrafuddin,

If you want to edit each cell you can use :

dataGridView1[ColumnIndex, RowIndex].Value = "the value you want"


where ColumnIndex is an integer value of the column index and RowIndex is an integer value of the row index.

I hope this help,
:)
 
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