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
省市区县数据-含经纬度Excel文件
2022-11-15 10:18:46 1.12MB 标准省市区数据
1
1、将解压文件放到D盘根目录,不要修改文件夹或文件字 2、CAD输入,命令“ap”加载文件“LYX.lsp” 3、输入快捷键“XX”加载程序,可通过快捷键或菜单运行程序
2022-11-14 20:34:43 47KB VBA CAD转Excel CAD插件 VBA代码插件
1
excel-json-sheet excel-json-sheet组件基于sheet.js, 在其基础功能上做了二次封装, 目前支持功能如下: excel解析成json数据或二维数组 excel文件解析过程的规则校验, 如限制行,列数, 限制模版头部, 校验规则可扩展 excel解析支持异步配置 json数组数据, 转excel文件下载 使用示例 Excel类实例 构造函数参数说明 options = { callback, rules, sheetToJsonOpt, parseOpt } 解析及生成excel,可以通过直接导入Excel类方式的实现 参数 类型 说明 是否必传 默认值 callback function 解析结果回调函数, 第一个参数为error(失败时有值), 第二参数为解析的数据(error不存在时有值) 是 无 rules object 解析校验规则,支
2022-11-14 14:54:23 7KB JavaScript
1
模糊查找excel表格且自动四舍五入
2022-11-14 09:04:21 42KB excel
1
模糊查找excel表格且自动四舍五入(源文件见同名资源)
2022-11-14 09:04:20 89KB excel
1