Button1.Show()
If e.RowIndex = DataGridView2.RowCount - 1 Then
Exit Sub
End If
'อ่านข้อมูลพนักงานที่ถูกเลือกให้แสดงในคอนโทลแต่ละตัว
With DataGridView2
TextBox2.Text = .Rows.Item(e.RowIndex).Cells(0).Value.ToString
TextBox13.Text = .Rows.Item(e.RowIndex).Cells(19).Value.ToString
End With
Private Sub DataGridView2_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView2.CellClick
Button1.Show()
If e.RowIndex = DataGridView2.RowCount - 1 Then
Exit Sub
End If
'อ่านข้อมูลพนักงานที่ถูกเลือกให้แสดงในคอนโทลแต่ละตัว
With DataGridView2
TextBox2.Text = .Rows.Item(e.RowIndex).Cells(0).Value.ToString
TextBox13.Text = .Rows.Item(e.RowIndex).Cells(19).Value.ToString
End With
end sub