根据秒数获取时间
declare @seconds int;set @seconds=7264;select CONVERT(varchar(50),(@seconds /3600))+' h '+CONVERT(varchar(50),(@seconds%3600)/60)+' m '+CONVERT(varchar(50),(@seconds%3600)/3600)+' s'2h1m4s …… 阅读全文
declare @seconds int;set @seconds=7264;select CONVERT(varchar(50),(@seconds /3600))+' h '+CONVERT(varchar(50),(@seconds%3600)/60)+' m '+CONVERT(varchar(50),(@seconds%3600)/3600)+' s'2h1m4s …… 阅读全文
说明:窗体B由窗体A打开,当在窗体B中执行完某操作后,关闭窗体B,同时执行窗体A中的方法,比如:调用窗体A中加载数据的方法,实现数据的即时刷新 //窗体A中执行打开窗体B的Refresh()方法 frmB frm = new frmB(); if (frm.ShowDialog() == DialogResult.OK) …… 阅读全文
//选择文件夹 FolderBrowserDialog dia = new FolderBrowserDialog(); if (dia.ShowDialog() == System.Windows.Forms.DialogResult.OK) { string filePath = dia.S …… 阅读全文
DataGridViewRow r1 = new DataGridViewRow(); r1.CreateCells(this.dataGridView1); r1.Cells[0].Value = false; r1.Cells[1].Value = type; r1.Cells[2].Value = …… 阅读全文
for (int i = 0; i < this.dataGridView1.Rows.Count; i++) { DataGridViewCheckBoxCell cb = (DataGridViewCheckBoxCell)this.dataGridView1.Rows[i].Cells[0]; bool …… 阅读全文
/// /// 导出Excel文件 /// /// /// /// 数据集 /// 导出后是否打开文件 /// public static bool DataTableToExcel(string filePath, System.Data.DataTable dataTable …… 阅读全文
OpenFileDialog ofd = new OpenFileDialog(); ofd.Filter = "xls|*.xls"; if (ofd.ShowDialog() == System.Windows.Forms.DialogResult.OK) { filePath = ofd …… 阅读全文
1.首先mdf文件必须是SQLServer2008及以下数据库,最好是2005版本的数据库2.将mdf文件这里以数据库文件“Test.mdf”为例,放于与程序Bin文件夹同文件夹下3.在Program.cs文件中,Main()方法下,添加如下代码string dataDir = AppDomain.CurrentDomain.BaseDirectory; if …… 阅读全文