演讲稿 工作总结 调研报告 讲话稿 事迹材料 心得体会 策划方案
WordExcel报表源码
using System;
using System.Collections.Generic; using System.Text; using System.Data;
using System.Windows.Forms; using System.Collections; using System.IO; using System.Reflection; using System.Data.OleDb; using System.Drawing; using Aspose.Words; using Aspose.Cells; namespace Lqjt {
///
public class ReportsCorrelation {
///
精心收集 精心编辑 精致阅读 如需请下载!
演讲稿 工作总结 调研报告 讲话稿 事迹材料 心得体会 策划方案
/// 存放报表模板的表名 ///
public string ReportTableName = SpecialTableName.ReportTableName; ///
/// EXCEL报表自动完成后,由具体功能进行后续处理的委托函数定义
///
///
///
///
/// ///
/// public delegate void AfterProExcelDef(string
p_ReportTableName, int p_Starty, int p_Startx, int p_Width, Worksheet p_ExcelSheet, DataTable p_Table); ///
精心收集 精心编辑 精致阅读 如需请下载!
演讲稿 工作总结 调研报告 讲话稿 事迹材料 心得体会 策划方案
/// AfterProExcelDef的具体实例 ///
public AfterProExcelDef AfterProExcel = null; ///
/// 利用Word生成简历式报表 ///
/// /// public void MakeDetailReport(DataTable p_Table, string p_FileName) {
try {
//word采用邮件合并,因此,手工添加操作员/今日两个特殊域
DataTable tb = p_Table.Copy();
DataColumn col = new DataColumn(\操作员}\typeof(string));
tb.Columns.Add(col);
col = new DataColumn(\今日}\ tb.Columns.Add(col);
精心收集 精心编辑 精致阅读 如需请下载!