 |
|
ใช้ DateDiff คำนวณข้อมูลวันที่ ที่ที่โชว์ใน Datagridview แล้วเอาค่าที่ได้มาใส่ใน Label ทำยังไงครับ [Vb.Net+MySQL] |
|
 |
|
|
 |
 |
|
ได้แล้วครับ
Code (VB.NET)
Dim i As Integer = 0
Dim datTim1 As Date = CDate(DataGridView1.Rows(i).Cells(8).Value)
Dim datTim2 As Date = CDate(DataGridView1.Rows(i).Cells(9).Value)
lblOverDays.Text = CStr(DateDiff(DateInterval.Day, datTim1, datTim2))
แต่อยากให้มันรวม วันที่เกิน เพิ่มไปเรื่อยๆ เช่น รายการที่ 1 เกิน 2 วัน รายการที่ 2 เกิน 3 วัน แล้วใน label แสดงเป็น 5 วัน เลยได้มั้ยครับ
|
 |
 |
 |
 |
Date :
2015-11-12 19:29:16 |
By :
Jamesillion |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|

|
 |
 |
 |
 |
Date :
2015-11-12 20:06:37 |
By :
mr.win |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
for ไงครับ
Code (VB.NET)
Dim count As Integer = 0
For i As Integer = 0 to DataGridView1.Rows.Count -1
count = count +CStr(DateDiff(DateInterval.Day,CDate(DataGridView1.Rows(i).Cells(8).Value),CDate(DataGridView1.Rows(i).Cells(9).Value)))
Next
lblOverDays.Text = CStr(count)
บ้านๆก็คงประมาณนี้ครับ
|
 |
 |
 |
 |
Date :
2015-11-13 08:27:21 |
By :
lamaka.tor |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|