How to Fill TextBoxes from DataGridView on Button Click Event

前端 未结 2 1803
时光取名叫无心
时光取名叫无心 2021-01-24 12:56

I want to fill data on button click event from DataGridView Control:

\"enter

My co

2条回答
  •  一生所求
    2021-01-24 13:53

    Looping through your columns probably won't help here.

    Try assigning each textbox the cell that it is mapped to:

    txt_EnrollNo.Text = this.dgv_EmpAttList.CurrentRow.Cells[1].Value.ToString();
    txt_FirstInTime.Text = this.dgv_EmpAttList.CurrentRow.Cells[2].Value.ToString();
    

提交回复
热议问题