|
|
|
[C#] ข้อมูล column ใน datagrid จะ Add ใส่ Parameters ยังไงครับ |
|
|
|
|
|
|
|
Code (C#)
cmd.Parameters.AddWithValue("@ItemCode", dataGridView1.Rows[i].Cells[0].Value);
Rows ที่ i ต้องหาวิธีเอานะครับว่าเลือกแถวไหน
|
|
|
|
|
Date :
2011-11-24 22:30:58 |
By :
SPIRITT |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แถวที่เราคลิกอยู่ อะครับ จะทำยังไงครับ ไม่รู้จริงครับ
|
|
|
|
|
Date :
2011-11-24 23:28:02 |
By :
pissanu1988 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเป็นวิธีของผมนะครับ อาจจะไม่ใช่วิธีที่ดีที่สุดนะครับ
Code (C#)
public string SendID { // เป็น string หรือ int ก็ได้ จะเอาไว้เก็บแถวใน datagrid ที่เลือก
get { return _message; }
set { _message = value; }
}
private void GridView_Customer_CellClick(object sender, DataGridViewCellEventArgs e) {
if (e.RowIndex < 0 || e.ColumnIndex < 0) {
return;
}
MessageBox.Show("คลิกแถวที่= " + e.RowIndex);
this.SendID = e.RowIndex; // เอาค่า e.RowIndex ไปเก็บไว้ที่ SendID ที่นี้ก็รู้แถวที่เราคลิก แล้วครับ
}
|
ประวัติการแก้ไข 2011-11-25 16:59:39
|
|
|
|
Date :
2011-11-25 16:58:46 |
By :
SPIRITT |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2011-11-25 17:02:58 |
By :
pissanu1988 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|