คือผมใช้คำลั่ง
Private Sub CustomersDataGridView_CellMouseDoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles CustomersDataGridView.CellMouseDoubleClick
With CustomersDataGridView
Me.TextID.Text = .Rows.Item(e.RowIndex).Cells(0).Value.ToString
Me.TextName.Text = .Rows.Item(e.RowIndex).Cells(1).Value.ToString
Me.TextCountry.Text = .Rows.Item(e.RowIndex).Cells(2).Value.ToString
End With
End Sub
คลิกที่ Cell แล้วใช้งานได้ครับแต่ติดปัญหาตรงที่เวลาไปดับเบิ้ลคลิกแล้วที่Column มันเกิด Error ขึ้นครับแต่ถ้าคลิกทีเดียวจะเป็นการเรียงลำดับไม่ทราบว่าต้องเขียนโค๊ดกำกับไว้ที่Columnด้วยหรือเปล่าครับ ขอบคุณครับ
Private Sub CustomersDataGridView_DoubleClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CustomersDataGridView.DoubleClick
With CustomersDataGridView
Me.TextID.Text = .Rows(.CurrentRow.Index).Cells(0).Value.ToString
Me.TextName.Text = .Rows(.CurrentRow.Index).Cells(1).Value.ToString
Me.TextCountry.Text = .Rows(.CurrentRow.Index).Cells(2).Value.ToString
End With
End Sub