Click here to Skip to main content
15,918,624 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am Using this but its not working.
DataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value = "Update";
Posted

1 solution

Hello
you must add this code after your code
this.dataGridView1.UpdateCellValue(e.ColumnIndex, e.RowIndex);
 
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