|
|
|
Help !! ปัญหาคือ ค่าที่เลือกมาจาก listview มันมีค่าเป็น ListViewSubItem: {แก้วน้ำ} เมื่อบันทึกลง DB (Access) |
|
|
|
|
|
|
|
Code (C#)
for (int i = 0; i <= listView1.Items.Count - 1; i++)
{
Order_ID = listView1.Items[i].SubItems[0].ToString();
Order_Name = listView1.Items[i].SubItems[1].ToString();
Order_price = listView1.Items[i].SubItems[2].ToString();
Order_num = listView1.Items[i].SubItems[3].ToString();
//
dt.Clear();
conn.connectDB();
dt = new DataTable();
dt = conn.LoadData("INSERT INTO tb_Order (Order_name,Order_price,Order_num,Bill_ID) VALUES ('" + Order_Name + "','" + Order_price + "','" + Order_num + "','"+ sCode + "')");
}
ปัญหาคือ Order_name,Order_price,Order_num ที่เลือกมาจาก listview มันมีค่าเป็น ListViewSubItem: {แก้วน้ำ} เมื่อบันทึกลง DB (Access)
คือต้องการแค่ แก้วน้ำต้องทำอย่างไรหรอครับ
Tag : .NET, Ms Access, C#, VS 2008 (.NET 3.x)
|
|
|
|
|
|
Date :
2012-01-18 09:47:03 |
By :
spol2e |
View :
919 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ได้ละ TT^TT
Order_ID = listView1.Items[i].SubItems[0].ToString();
เป็น
Order_ID = listView1.Items[i].SubItems[0].Text;
|
|
|
|
|
Date :
2012-01-18 11:27:10 |
By :
spol2e |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|