摘要:
//添加下面事件即可 private void DataGridView_CellMouseDown(object sender, DataGridViewCellMouseEventArgs e) { if (e.RowIndex >= 0) { if (e.Button == Sys... 阅读全文
摘要:
方法一:只禁止多个进程运行 [STAThread] public static void Main() { bool ret; System.Threading.Mutex mutex = new System.Threading.Mutex(true, Application.ProductName, out ret); if (ret) { System.Wi... 阅读全文
摘要:
.Net用DataTable导出Excel通用函数(修正了Excel进程删除不掉问题) 1,首先要导入Com文件Microsoft Excel 11.0 Object Library. 2,要添加Interop.Excel.dll文件 http://www.cnblogs.com/Files/ghostljj/Interop.Excel.rar 3.执行下面步骤 /// /// ... 阅读全文
摘要:
首先要在项目->添加引用->COM中添加Microsoft Office Web Components ,然后定义一个OWC.SpreadsheetClass 如:Dim xlsheet As New OWC.SpreadsheetClass 然后就可以向sheet中添加数据了,使用xlsheet.Cells(2, 2) = "表格填充内容" 格式添加数据,使用xlsheet.Range("B3... 阅读全文