摘要: #region 自动生成ID /// /// 自动生成ID /// /// 表名 /// 关键字 /// 位数 /// 题头标志 /// 新生成的编号 public static string GetNewId(string Table_Name, string Pk_Name, int Di... 阅读全文
posted @ 2014-07-31 10:00 语讷言拙 阅读(491) 评论(0) 推荐(0)
摘要: SaveFileDialog saveFileDialogExcel = new SaveFileDialog();saveFileDialogExcel.Filter = "Excel 文件(*.xls)|*.xls|Excel 文件(*.xlsx)|*.xlsx|所有文件(*.*)|*.*";i... 阅读全文
posted @ 2014-07-31 09:25 语讷言拙 阅读(779) 评论(0) 推荐(0)
摘要: private void InputClear(Control EditArea) { foreach (Control Ctrl in EditArea.Controls) { if (Ctrl.GetType().Equals(typeof(TextBox))) { Ctrl.Text = "... 阅读全文
posted @ 2014-07-31 09:23 语讷言拙 阅读(121) 评论(0) 推荐(0)