03 2012 档案
摘要:ViewCodeusingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingMicrosoft.Office.Interop.Excel;na...
阅读全文
摘要:聚合函数Avg(numeric_expr)返回integer、decimal、money、float---返回组中各值的平均值Count(*|column_name|distinct column_name) 返回integer---返回表中的记录数|返回指定列的数目|返回指定列的不同值的数目Cou...
阅读全文
摘要:一.假分页 #region全局变量intcurrentPage=1;//当前页码intpageSize=8;//一页显示的记录条数DataTabledt=newDataTable();//查询到的所有数据#endregion#region分页/*控制“上一页”“下一页”的启用状态*/privatevoidpageButtonStatus(){buttonPreviousPage.Enabled=true;buttonNextPage.Enabled=true;if(pageSize*(currentPage-1)!=0&&pageSize*(currentPage-1)==dt
阅读全文