Software Development Network>> Windows Forms>> Data grid view
If you have 1 column:
dataGridView1.Rows[0].SetValues("New Value");
so it only works if you have one column
Multiple cols:
dataGridView1.Rows[0].SetValues("Col1New Value", "Col2New Value etc.");
Data grid view
Troy Lundin
Allah Is Here
If you have 1 column:
dataGridView1.Rows[0].SetValues("New Value");
RayCan
Raybritton
Lars Brange
so it only works if you have one column
Pat J
Multiple cols:
dataGridView1.Rows[0].SetValues("Col1New Value", "Col2New Value etc.");