• 大小: 2.20 KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: excel  数据空间    C#  

资源简介

这是专门实现了excel与数据控件的操作的简单功能,可是实现数据导入excel,也可是实现数据从excel导入数据空间,只需调用此类即可。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;

using Excel = Microsoft.Office.Interop.Excel;
using System.IO;//为了File
using System.Reflection;

using System.Data;//为了使用datatable
using System.Windows.Forms;//为了使用datagridview

//对类里面函数访问的方式有两种:通过实例化对象访问非静态函数;通过类名访问静态函数。此处采用实例化。
/***********************************************************************************
                                  针对有模板的情况 
 ***********************************************************************************/

class ClassExcelbase
{
    public ClassExcelbase(object TemplateFilePath int ExcelSheetID object OutputFilePath)
    {
        this.TemplateFilePath = TemplateFilePath;
        this.ExcelSheetID = ExcelSheetID;
        this.OutputFilePath = OutputFilePath;
    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       7514  2012-02-18 15:18  ClassExcelbase.cs

----------- ---------  ---------- -----  ----

                 7514                    1


评论

共有 条评论