Please, what is wrong with this:
Form2_Closing:
Form1.DataGridView1.Rows[0].Cells[1].Value = "323";
Error: Index was out of range. Must be non-negative and less than the
size of the collection. Parameter name: index
DGV on Form1 has 10 Rows and 14 Columns
Create a new Winforms Project and add a button & its click handler and a TextBox [make it accessible, such that the child can set value. I have made it public in the designer for now] too. Then add the following code on this Form. Additionally, add a new Form (Form2) in the Project.