datagridviewでQTYという名前の列の合計を計算しようとしました。 しかし、私はそうではありません。私のコードは以下の通りです。私を手伝ってくれますか? Datagridviewの列の合計
public int RowCount { get; set; }
[BrowsableAttribute(false)]
private void dataGridView1_SelectionChanged(object sender, EventArgs e)
{
private void UpdateLabelText()
{
int QtyTotal = 0;
int counter;
// Iterate through all the rows and sum up the appropriate columns.
for (counter = 0; counter < (dataGridView1.Rows.Count);
counter++)
{
if (dataGridView1.Rows[counter].Cells["Qty"].Value
!= null)
{
if (dataGridView1.Rows[counter].
Cells["Qty"].Value.ToString().Length != 0)
{
QtyTotal += int.Parse(dataGridView1.Rows[counter].
Cells["Qty"].Value.ToString());
}
}
}
// Set the labels to reflect the current state of the DataGridView.
label17.Text = "Qty Total: " + QtyTotal.ToString();
}
そのコードに問題は何を試してみてください?例外、予期しない結果? – Pikoh
合計はラベル17に示されていません – Bahadir
予期しているエラーを示しています – Bahadir