private void sumaSaldosFactura()
{
try
{
sumatoria = 0;
foreach (DataGridViewRow row in dataGridView1.Rows)
{
try
{
if (row.Cells["colAdmin"].Value.ToString() == "1")
{
sumatoria += Convert.ToDouble(row.Cells[4].Value);
}
}
catch
{
}
}
tbSumatoria.Text = Convert.ToString(sumatoria); //aqui se graba el total
tbSumatoria.Text = (double.Parse(tbSumatoria.Text)).ToString("#,#.00");
}
catch(Exception e)
{
MessageBox.Show(e.Message,e.GetType().ToString());
}
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
//if (dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString() == "1")
// dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value = "0";
//else
// dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value = "1";
sumaSaldosFactura();
}
private void bLimpiar1_Click(object sender, EventArgs e)
{
Generales.limpiaForm(this);
//dataGridView1.DataSource = new BasicoNG().listarFacturasAdmin(conexionOracle, tbcampoConsulta);
}
private void dataGridView1_CurrentCellDirtyStateChanged(object sender, EventArgs e)
{
if (dataGridView1.IsCurrentCellDirty)
{
dataGridView1.CommitEdit(DataGridViewDataErrorContexts.Commit);
}
}