เป็นตัวอย่างนะครับ เป็นการ Get ค่าออกมา ส่วนเรื่องการส่งค่าข้าม From ไม่น่ายากอะไรนะครับ ***จริงๆ ใช้ Event อื่นก็ได้นะครับ
Code (VB.NET)
Private Sub CardIDDataGridView_CurrentCellChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles CardIDDataGridView.CurrentCellChanged
Try
Me.Text = CardIDDataGridView.CurrentRow.Cells(0).Value
Catch ex As Exception
'แล้วแต่ละกัน
End Try
End Sub