0
3列のQty、Price、Amountがあり、DataGridViewを使用して1行あたりの量を計算する必要があります。私はその数量がCell 0
であると仮定DataGridViewを使用してセルを計算する方法
3列のQty、Price、Amountがあり、DataGridViewを使用して1行あたりの量を計算する必要があります。私はその数量がCell 0
であると仮定DataGridViewを使用してセルを計算する方法
は、価格はCell 1
あり、その量は、Cell 2
For i As Integer = 0 To DataGridView1.RowCount - 1
Dim xQty as Double = CDBL(DataGridView1.Rows(i).Cells(0).Value)
Dim xPrc as Double = CDBL(DataGridView1.Rows(i).Cells(1).Value)
DataGridView1.Rows(i).Cells(2).Value = xQty * xPrc
Next
メトロのですか? WinForms? WPF? Silverlight? ASP.Net? MonoTouch? – SLaks
WinForms Sir :) – Dennis