实现Excel导入SqlServer、MySQL、Oracle,空白数据实现自动填充。 也可以从数据库导出到Excel文件。 有完整的源代码,可以下载下来自己研究一下~
2022-11-16 15:15:43 1.08MB Excel 导入 导出 数据库
1
excel数据抽取到kafka
2022-11-16 13:29:15 54.9MB excel kafka
1
excel文件导入mysql数据库,并显示至dgv中
2022-11-16 08:22:11 407KB C#
1
个人觉得非常不错的一个VBA基础教程,非常适合刚入门的同学,里面讲解的非常细腻,很容易懂,学习什么都要大好基础嘛,想学VBA的同学,向你们推荐这个文档。
2022-11-15 22:02:42 1.47MB VBA Excel 基础 入门
1
破解excel密码以及解除密码
2022-11-15 21:12:22 35.21MB excel
1
MD5宏文件
2022-11-15 19:22:21 73KB MD5宏文件
1
网络上能够找到的Excel导出文件为Excel9,是Office2000的,版本较老。现从Excel2012中导出新的头文件:Excel14.h,Excel14.cpp
2022-11-15 16:31:30 28KB Excel.h Excel.cpp
1
VB将Listview数据导出到Excel表格的实例
2022-11-15 15:14:57 28KB VB将Listview数据导出到
1
本人最近也在学习EXCEL,无意中在网上看到这本电子书,觉得很好,就和大家一起分享。本书一切版权归原作者所有,喜欢本书请购买正版,电子版仅供学习交流用。 内含:电子版+扫描版+源代码 希望你能喜欢。
2022-11-15 12:20:12 39.79MB excel 源代码
1
一个简单实用类 using Aspose Cells; class AsposeExcel { private string outFileName ""; private string fullFilename ""; private Workbook book null; private Worksheet sheet null; public AsposeExcel string outfilename 导出构造数 { outFileName outfilename; book new Workbook ; sheet book Worksheets[0]; } private void AddTitle string title int rowIndex int columnIndex { Cell cell1 sheet Cells[rowIndex columnIndex]; cell1 PutValue title ; } private void AddHeader DataTable dt int rowIndex int columnIndex { Cell cell null; for int col 0; col < dt Columns Count; col++ { cell sheet Cells[rowIndex col + columnIndex]; cell PutValue dt Columns[col] ColumnName ; } } private void AddBody DataTable dt int rowIndex int columnIndex { for int r 0; r < dt Rows Count; r++ { for int c 0; c < dt Columns Count; c++ { sheet Cells[r + rowIndex c + columnIndex] PutValue dt Rows[r][c] ToString ; } } } 导出 public Boolean DatatableToExcel DataTable dt int rowIndex int columnIndex { Boolean yn false; try { sheet Name sheetName; AddHeader dt rowIndex columnIndex ; AddBody dt rowIndex+1 columnIndex+1 ; sheet AutoFitColumns ; sheet AutoFitRows ; book Save outFileName ; yn true; return yn; } catch Exception e { return yn; } } }">一个简单实用类 using Aspose Cells; class AsposeExcel { private string outFileName ""; private string fullFilename ""; private Workbook book null; private Worksheet sheet null; public AsposeExcel string outfilename 导 [更多]
2022-11-15 10:54:47 11.64MB Aspose cell Excel
1