excel二次开发c语言,excel C#二次开发随笔(纯新手).

1.首先需要安装VS,然后把需要的模块一起安装.

2.新建项目,VSTO外接程序.

1.png

3.新建好项目之后会生产以下代码

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Xml.Linq;

using Excel = Microsoft.Office.Interop.Excel;

using Office = Microsoft.Office.Core;

using Microsoft.Office.Tools.Excel;

namespace ExcelAddIn1

{

public partial class ThisAddIn

{

private void ThisAddIn_Startup(object sender, System.EventArgs e)

{

}

private void ThisAddIn_Shutdown(object sender, System.EventArgs e)

{

}

#region VSTO 生成的代码

///

/// 设计器支持所需的方法 - 不要修改

/// 使用代码编辑器修改此方法的内容。

///

private void InternalS

你可能感兴趣的:(excel二次开发c语言)