Private Sub DataGridView1_CellDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellDoubleClick
Dim ID As Integer = CInt(DataGridView1.Rows(RowIndex).Cells(e.ColumnIndex).Value)
Dim detailForm As New DetailForm(ID) 'ตอนสร้าง DetailForm ก็สร้าง constructor ให้รับ parameter ID ไป query ข้อมูล
detailForm.Show()
End Sub