一.C#部分:
1.需要引用的库:
using Microsoft.Office.Interop.Excel
2.C#中新建excel对象:
using Excel=Microsoft.Office.Interop.Excel;
Excel.Application xapp=new Excel.Application();
//打开vba程序所在的excel
string path=@“C:\User\Desktop\test.xlsm”;
Excel.Workbook wb=xapp.Workbooks.Open(path);
//下一步直接可以运行“test.xlsm"中的宏了,如果这个宏名为”test",直接这样就可以:
xapp.Run(“test”)
完整代码:
` string path = @“C:\Users\Nesus\Desktop\test.xlsm”;
Excel.Application xapp=new Excel.Application();
Excel.Workbook wb=xapp.Workbooks.Open(path);
xapp.Run(“test”);
如果要传递C#中的参数到VBA中,只需要在xapp.Run中加一个参数就行了,
比如,要传递一个字符串s进去:
string s=“student”;
xapp.Run(“test”, s);
那么在运行VBA程序时,就会引用s。文章来源:https://www.toymoban.com/news/detail-503341.html
二.VBA部分
1.不需要传递参数的情况:
Sub test
msgbox(“test”)
End Sub
2.需要传递参数进去:
Sub test(Byval stu as string)
msgbox(“test” & stu)
End sub
在运行C#代码xapp.Run(“test”, s)时,会定位到这个叫“test"的宏,然后引用 s="student"的这个字符串,最终输出 “test student"的结果。文章来源地址https://www.toymoban.com/news/detail-503341.html
到了这里,关于C#调用vba程序以及传递C#中参数到VBA程序的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!