 |
|
รบกวนช่วยดูให้ทีคับ VB.NET ทำไมผมเปลี่ยนค่าแล้วจำนวนเงินมันไม่รวมให้อีกคับ ดูคำตอบที่ No.1 นะคับ |
|
 |
|
|
 |
 |
|
ผมเปลี่ยนราคา หรือ จำนวนไป ทำไมมันยัง - 20 อยู่อีกละคับ แทนที่มันจะต้องเป็นค่าจาก รวมเป็นเงิน จำนวนตามนั้น แต่ textbox มันแสดง ค่าหายไป 20 บาท ง่ายๆคือเหมือนมันเอา รวมเป็นเงินมา - กับราคา เลยอ่าคับ

DataGridView1_CellEndEdit
Code (VB.NET)
Dim sum As Double = 0.0
If (e.ColumnIndex = 2 Or e.ColumnIndex = 3) Then
Try
Dim price As Double = Double.Parse(DataGridView1(2, e.RowIndex).Value.ToString())
Dim qty As Double = Double.Parse(DataGridView1(3, e.RowIndex).Value.ToString())
Dim amount As Double = price * qty
DataGridView1(4, e.RowIndex).Value = amount.ToString("#,###.00")
sum = sum + amount - OldValue
NewValue = NewValue + sum
txtTotal.Text = NewValue.ToString("#,###.00")
Catch ex As Exception
NewValue = NewValue - OldValue
txtTotal.Text = NewValue.ToString("#,###.00")
DataGridView1(4, e.RowIndex).Value = 0
End Try
End If
DataGridView1_CellBeginEdit
Code (VB.NET)
Try
OldValue = Double.Parse(DataGridView1(4, e.RowIndex).Value.ToString())
Catch ex As Exception
OldValue = 0
End Try
Tag : .NET, VB.NET, VS 2005 (.NET 2.x), VS 2008 (.NET 3.x), VS 2010 (.NET 4.x), VS 2012 (.NET 4.x)
|
ประวัติการแก้ไข 2014-01-14 21:05:29 2014-01-14 21:05:58 2014-01-14 21:07:13 2014-01-14 21:15:53 2014-01-15 09:17:55
|
 |
 |
 |
 |
Date :
2014-01-14 21:04:51 |
By :
l3ios |
View :
1067 |
Reply :
2 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ได้แล้วคับ ผิดไปบรรทัดเดียวเอง ทำจนเบลอหมด
จาก
Code (VB.NET)
NewValue = NewValue + sum
เป็น
Code (VB.NET)
NewValue = OldValue + sum
แต่ปัญหาต่อไปคือ มันไม่ยอมรวมเงินให้ แต่กลับแสดงการแก้ไขหรือยอดเงินแก้ไขล่าสุดแทน ทำไปทำมางงตัวเองละ

Code (VB.NET)
Dim sum As Double = 0.0
If (e.ColumnIndex = 2 Or e.ColumnIndex = 3) Then
Try
Dim price As Double = Double.Parse(DataGridView1(2, e.RowIndex).Value.ToString())
Dim qty As Double = Double.Parse(DataGridView1(3, e.RowIndex).Value.ToString())
Dim amount As Double = price * qty
DataGridView1(4, e.RowIndex).Value = amount.ToString("#,###.00")
sum = sum + amount - OldValue
NewValue = OldValue + sum
txtTotal.Text = NewValue.ToString("#,###.00")
Catch ex As Exception
NewValue = NewValue - OldValue
txtTotal.Text = NewValue.ToString("#,###.00")
DataGridView1(4, e.RowIndex).Value = 0
End Try
End If
|
ประวัติการแก้ไข 2014-01-14 23:09:40 2014-01-14 23:10:24 2014-01-14 23:15:19
 |
 |
 |
 |
Date :
2014-01-14 23:00:55 |
By :
l3ios |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|

|
 |
 |
 |
 |
Date :
2014-01-15 06:27:46 |
By :
mr.win |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|