最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
采用反射实现后期绑定操作EXCEL的简单代码(建议加入精华区)
时间:2022-07-02 11:30:29 编辑:袖梨 来源:一聚教程网
除了采用TblImp导入Excel object库实现Excel的调用外.
其实还可以采用反射的方法获得属性,并进行后期绑定实现
Excel的调用.下面是简单的调用EXCEL程序.
using System;
using System.Reflection;
using System.Windows;
using System.Windows.Forms;
class TestLateBound:System.Windows.Forms.Form
{
private Button myButton;
public TestLateBound()
{
myButton=new Button();
myButton.Text="调用EXCEL";
myButton.Location=new System.Drawing.Point(100,100);
myButton.Click+=new System.EventHandler(TestBound);
this.Controls.Add(myButton);
this.Text="测试后期绑定 Excel Application";
}
public void TestBound(object sender,System.EventArgs ef)
{
Type myExcel;
myExcel=Type.GetTypeFromProgID("Excel.Application");
object objExcel;
其实还可以采用反射的方法获得属性,并进行后期绑定实现
Excel的调用.下面是简单的调用EXCEL程序.
using System;
using System.Reflection;
using System.Windows;
using System.Windows.Forms;
class TestLateBound:System.Windows.Forms.Form
{
private Button myButton;
public TestLateBound()
{
myButton=new Button();
myButton.Text="调用EXCEL";
myButton.Location=new System.Drawing.Point(100,100);
myButton.Click+=new System.EventHandler(TestBound);
this.Controls.Add(myButton);
this.Text="测试后期绑定 Excel Application";
}
public void TestBound(object sender,System.EventArgs ef)
{
Type myExcel;
myExcel=Type.GetTypeFromProgID("Excel.Application");
object objExcel;
相关文章
- 蛋仔派对线条小狗联动有哪些活动 08-15
- 物华弥新金蝉玉叶有什么技能 08-15
- 火影忍者木叶高手漩涡玖辛奈技能如何 08-15
- 背包乱斗幸运游侠有什么玩法技巧 08-15
- 阴阳师樱梦游园有哪些内容 08-15
- 绝区零奥菲丝技能哪些特点 08-15