作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 datagridview,我从 phpmyadmin 调用值,我尝试添加它的值行,但是当我编辑单元格 1 时它获得相同的值
MySqlConnection conn = new MySqlConnection("datasource=localhost;port = 3306;username = root;password = ");
MySqlCommand comm = new MySqlCommand("select Fee,Amount from system.other_school_fees ;", conn);
MySqlDataAdapter ssda = new MySqlDataAdapter();
ssda.SelectCommand = comm;
DataTable ddbdataset = new DataTable();
ssda.Fill(ddbdataset);
BindingSource bbsource = new BindingSource();
bbsource.DataSource = ddbdataset;
dataGridView2.DataSource = bbsource;
ssda.Update(ddbdataset);
dataGridView2.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;
int d = 0;
for (int b = 0; b < dataGridView2.Rows.Count; b++)
{
d += Convert.ToInt32(dataGridView2.Rows[b].Cells[1].Value);
}
lblOSF.Text = d.ToString();
最佳答案
解决了!
private int CellSum()
{
string a = string.Empty;
int sum = 0;
for (int b = 0; b < dataGridView1.Rows.Count; ++b)
{
try
{
int d = 0;
d += Convert.ToInt32(dataGridView1.Rows[b].Cells[1].Value);
sum += d;
}
catch
{
MySqlConnection conn = new MySqlConnection("datasource=localhost;port = 3306;username = root;password = ");
MySqlCommand comm = new MySqlCommand("select Miscellaneous_Fee,Amount from system.miscellaneoues;", conn);
MySqlDataAdapter ssda = new MySqlDataAdapter();
ssda.SelectCommand = comm;
DataTable ddbdataset = new DataTable();
ssda.Fill(ddbdataset);
BindingSource bbsource = new BindingSource();
bbsource.DataSource = ddbdataset;
dataGridView1.DataSource = bbsource;
ssda.Update(ddbdataset);
dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;
MessageBox.Show("Incorrect Input");
}
}
return sum;
}
private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex == 1)
lblMiscellaneous.Text = CellSum().ToString();
}
关于c# - 从数据库获取值(value)并添加它的值(value)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36057272/
我是一名优秀的程序员,十分优秀!