Using reflection to implement late-bound operation of Excel's simple code (recommended to join the elite area)

Source: Internet
Author: User
Tags reflection
In addition to using Tblimp to import Excel object libraries to implement Excel calls.
In fact, you can also use the method of reflection to obtain properties, and the implementation of late binding
An Excel call. The following is a simple call to the Excel program.
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= "Call Excel";
Mybutton.location=new System.Drawing.Point (100,100);
Mybutton.click+=new System.EventHandler (Testbound);

This. Controls.Add (MyButton);
This. text= "Test late bound Excel application";

}

public void Testbound (Object Sender,system.eventargs EF)
{
Type Myexcel;
Myexcel=type.gettypefromprogid ("Excel.Application");

Object Objexcel;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.