|
|
|
การดึงข้อมูลเฉพาะ Cell ใน GridView จากรูปนะครับ ถ้าผมจะดึงข้อมูลเฉพาะ Cell ของ GridView จะต้องเขียน Code อย่างไรดีครับ |
|
|
|
|
|
|
|
ว้า คำถามนี้ตอบบ่อยแล้วอ่ะ ไม่อยากตอบเลย
|
|
|
|
|
Date :
2010-04-21 13:37:11 |
By :
tungman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
With DataGridView1
.DataSource = OleDDSet.Tables(0)
End WithCode (VB.NET)
Code (VB.NET)
CountData = OleDDSet.Tables(0).Rows.Count
For i As Integer = 0 To CountData - 1 Step 1
Dept_Type = OleDDSet.Tables(0).Rows(i).Item(1).ToString
Depart_Date = OleDDSet.Tables(0).Rows(i).Item(7).ToString
Truck_No = OleDDSet.Tables(0).Rows(i).Item(11).ToString
Trailer_Type = OleDDSet.Tables(0).Rows(i).Item(12).ToString
Store_Code = OleDDSet.Tables(0).Rows(i).Item(17).ToString
Store_Name = OleDDSet.Tables(0).Rows(i).Item(18).ToString
Pallet_Type = OleDDSet.Tables(0).Rows(i).Item(25).ToString
Truck_DHL = OleDDSet.Tables(0).Rows(i).Item(26).ToString
Truck_Type = OleDDSet.Tables(0).Rows(i).Item(27).ToString
Driver1 = OleDDSet.Tables(0).Rows(i).Item(28).ToString
Emp_ID = OleDDSet.Tables(0).Rows(i).Item(29).ToString
Driver2 = OleDDSet.Tables(0).Rows(i).Item(30).ToString
Emp_ID2 = OleDDSet.Tables(0).Rows(i).Item(31).ToString
Ora_Execute("insert into dhlit.tp_tripimport values('" & Dept_Type & "',to_date('" & Depart_Date & "','dd/mm/yyyy HH:mi:ss AM'),'" & Truck_No & "','" & Trailer_Type & "','" & Store_Code & "','" & Store_Name & "','" & Pallet_Type & "','" & Truck_DHL & "','" & Truck_Type & "','" & Driver1 & "','" & Emp_ID & "','" & Driver2 & "','" & Emp_ID2 & "')")
Next
เอาไปศึกษาเอานะ
|
|
|
|
|
Date :
2010-04-22 10:02:19 |
By :
คนดี |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|