HOWTO:在 Visual C# .NET 中使用自动化创建 Excel 宏

HOWTO:在 Visual C# .NET 中使用自动化创建 Excel 宏

<script type=text/javascript>function loadTOCNode(){}</script>
文章编号:303872
最后修改:2004年2月13日
修订:5.0
本文的发布号曾为 CHS303872
<script type=text/javascript> var sectionFilter = "type != 'notice' && type != 'securedata' && type != 'querywords'"; var tocArrow = "/library/images/support/kbgraphics/public/en-us/downarrow.gif"; var depthLimit = 10; var depth3Limit = 10; var depth4Limit = 5; var depth5Limit = 3; var tocEntryMinimum = 1; </script> <script src="/common/script/gsfx/kbtoc.js??4" type=text/javascript></script>

概要

<script type=text/javascript>loadTOCNode(1, 'summary');</script>
本文逐步介绍如何在 Microsoft Visual C# .NET 中使 Microsoft Excel 自动运行以创建包含新宏(该宏与 CommandBar 按钮关联)的工作簿。

更多信息

<script type=text/javascript>loadTOCNode(1, 'moreinformation');</script>

创建 Visual C# .NET 应用程序示例的步骤

<script type=text/javascript>loadTOCNode(2, 'moreinformation');</script>
1.启动 Microsoft Visual Studio .NET。
2.文件菜单上,单击新建,然后单击项目。从 Visual C# 项目类型中选择 Windows 应用程序。默认情况下会创建 Form1。
3.添加对 Microsoft Excel 对象库Microsoft Visual Basic for Applications 扩展库的引用。为此,请按照下列步骤操作:
a. 项目菜单上,单击添加引用
b. COM 选项卡上,找到 Microsoft Excel 对象库,然后单击选择。然后找到 Microsoft Visual Basic for Applications 扩展库并单击选择

注意:Microsoft Office 2003 包含主 Interop 程序集 (PIA)。Microsoft Office XP 不包含 PIA,但您可以下载 PIA。 有关 Office XP PIA 的其他信息,请单击下面的文章编号,以查看 Microsoft 知识库中相应的文章:
328912 (http://support.microsoft.com/kb/328912/) INFO: Microsoft Office XP PIA 可供下载
c. 添加引用对话框中单击确定以接受您的选择。
4.视图菜单上,选择工具箱以显示工具箱,然后向 Form1 添加一个按钮。
5.双击 Button1。代码窗口打开并显示 Button1Click 事件。将以下代码行添加到代码窗口顶部的 using 语句中:
using Office = Microsoft.Office.Core;
using VBIDE = Microsoft.Vbe.Interop;
using Excel = Microsoft.Office.Interop.Excel;
					
6.在代码窗口中,将以下代码
private void button1_Click(object sender, System.EventArgs e)
{
}
					
替换为:
private void button1_Click(object sender, System.EventArgs e)
{
	Excel.Application oExcel;
	Excel.Workbook oBook;
	VBIDE.VBComponent oModule;
	Office.CommandBar oCommandBar;
	Office.CommandBarButton oCommandBarButton;
	String sCode;
	Object oMissing = System.Reflection.Missing.Value;

	// Create an instance of Excel.
	oExcel = new Excel.Application();

	// Add a workbook.
	oBook = oExcel.Workbooks.Add(oMissing);

	// Create a new VBA code module.
	oModule = oBook.VBProject.VBComponents.Add(VBIDE.vbext_ComponentType.vbext_ct_StdModule);
	
	sCode = 
		"sub VBAMacro()/r/n" +
		"   msgbox /"VBA Macro called/"/r/n" +
		"end sub";
	// Add the VBA macro to the new code module.
	oModule.CodeModule.AddFromString(sCode);

	try 
	{
		// Create a new toolbar and show it to the user.
		oCommandBar = oExcel.CommandBars.Add("VBAMacroCommandBar",oMissing, oMissing,/);
		oCommandBar.Visible = true;
		// Create a new button on the toolbar.
		oCommandBarButton = (Office.CommandBarButton) oCommandBar.Controls.Add(
			Office.MsoControlType.msoControlButton,
			oMissing, oMissing, oMissing, oMissing);
		// Assign a macro to the button.
		oCommandBarButton.OnAction = "VBAMacro";
		// Set the caption of the button.
		oCommandBarButton.Caption = "Call VBAMacro";
		// Set the icon on the button to a picture.
		oCommandBarButton.FaceId = 2151;
	} 
	catch(Exception eCBError) {
		MessageBox.Show("VBAMacroCommandBar already exists.","Error");
	}

	// Make Excel visible to the user.
	oExcel.Visible = true;
	// Set the UserControl property so Excel won't shut down.
	oExcel.UserControl = true;

	// Release the variables.
	oCommandBarButton = null;
	oCommandBar = null;
	oModule = null;
	oBook = null;
	oExcel = null;		
	// Collect garbage.
	GC.Collect();
}
					
7.按 F5 键生成并运行该程序。
8.单击 Button1 启动 Microsoft Excel,插入 Visual Basic for Applications (VBA) 代码,然后添加一个新的 CommandBar。单击 CommandBar 上的按钮以运行 VBA 宏。

Additional Notes for Office XP

<script type=text/javascript>loadTOCNode(2, 'moreinformation');</script> Microsoft Office 2003 和 Microsoft Office XP 应用程序具有一个安全选项,以允许对 VBA 对象模型进行编程访问。如果此设置为 (默认设置),可能会在运行该代码示例时出现一个错误。 有关此设置和如何纠正该错误的其他信息,请单击下面的文章编号,以查看 Microsoft 知识库中相应的文章:
282830 (http://support.microsoft.com/kb/282830/) PRB:Programmatic Access to Office XP VBA Project Is Denied

参考

<script type=text/javascript>loadTOCNode(1, 'references');</script>
有关其他信息,请单击下面的文章编号,以查看 Microsoft 知识库中相应的文章:
303871 (http://support.microsoft.com/kb/303871/) Create an Excel Macro Programmatically from Visual Basic .NET
194611 (http://support.microsoft.com/kb/194611/) Create and Call an Excel Macro Programmatically from VB

这篇文章中的信息适用于:
Microsoft Visual C# .NET 2003 标准版
Microsoft Visual C# .NET 2002 标准版
Microsoft Office Excel 2003
Microsoft Excel 2002 标准版
关键字: 
kbhowto kbpia KB303872
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值