支持 VBA 的电子表格组件

发布于 2024-09-01 22:09:39 字数 238 浏览 6 评论 0原文

我正在寻找一个 .Net 电子表格组件,它也可以执行 Excel 文件中包含的 VBA。

我发现 Spreadsheet Gears 非常适合操作和允许用户编辑 Excel 文件,但在电子表格上用VBA来计算,嗯,这些不行。

那么,除了Excel本身之外,还有其他组件可以执行VBA吗?

I am looking for a .Net spreadsheet component that could also execute the VBA contained in Excel files.

I found Spreadsheet Gears to be very nice for manipulating and allowing the user to edit Excel files, but on spreadsheets that use VBA for calculations, well, these don't work.

So, apart from Excel itself, are there any other components that can execute VBA?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

金兰素衣 2024-09-08 22:09:39

您可以直接从.NET执行office宏

例如:vb.net

 objExcel = New Excel.Application
 objExcel.Workbooks.Open(FileName:="c:\test.xls", ReadOnly:=True)
 objExcel.Run("test.xls!test.test")

You can directly execute office macros from .NET

Eg: vb.net

 objExcel = New Excel.Application
 objExcel.Workbooks.Open(FileName:="c:\test.xls", ReadOnly:=True)
 objExcel.Run("test.xls!test.test")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文