Data grid view

Is there a way to change or edit a existing row in a datagrid control. If there is can you give me example

Answer this question

Data grid view

  • Troy Lundin

    Rhode Island or MA.

  • Allah Is Here

    If you have 1 column:

    dataGridView1.Rows[0].SetValues("New Value");



  • RayCan

    EMAIL ME YOUR RESUME
  • Raybritton

    if you really need a job tell me the state you live in, I am a SE for a medical company
  • Lars Brange

    so it only works if you have one column


  • Pat J

    Multiple cols:

    dataGridView1.Rows[0].SetValues("Col1New Value", "Col2New Value etc.");



  • Data grid view