2009年6月19日

sql语句中总计相加

摘要: select a.班别编号, a.人数上限,a.人数上限-b.total from table1 aleft join (select 班别,count(班别) total from table2 ) b on b.班别=a.班别编号 阅读全文

posted @ 2009-06-19 16:57 欣路历程 阅读(632) 评论(0) 推荐(0) 编辑

DataGridView最后总计行

摘要: private double sum = 0;//取指定列的数据和,你要根据具体情况对待可能你要处理的是int protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowIndex >= 0) { sum += Convert.ToDouble(e.Row.Cell... 阅读全文

posted @ 2009-06-19 16:55 欣路历程 阅读(564) 评论(0) 推荐(0) 编辑

CellFormatting事件绑定判断

摘要: private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e){ if (e.ColumnIndex == 1 /*status列的Index*/) { if (object.Equals(e.Value, 0)) { e.Value = "未完成"; e.CellSty... 阅读全文

posted @ 2009-06-19 16:54 欣路历程 阅读(2605) 评论(2) 推荐(0) 编辑

导航