Spreadsheetgear运行宏?
是否可以在 Spreadsheetgear 中运行现有的 Excel 宏?
Is it possible to run existing excel macros in Spreadsheetgear?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以在 Spreadsheetgear 中运行现有的 Excel 宏?
Is it possible to run existing excel macros in Spreadsheetgear?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
SpreadsheetGear 可以使用 VBA 宏打开 xls 和 xlsm 工作簿、保留宏并将宏保存回磁盘,但 SpreadsheetGear 无法执行 VBA 代码。
SpreadsheetGear 确实提供了类似于 Excel 的 API,因此您可以经常将 VBA 代码移动到 VB.NET 或 C#。
SpreadsheetGear 还支持自定义函数,但同样,您必须提供它们的 .NET 实现,否则它们将返回#NAME!
SpreadsheetGear can open xls and xlsm workbooks with VBA macros, preserve the macros, and save the macros back to disk, but SpreadsheetGear cannot execute VBA code.
SpreadsheetGear does provide an API which is similar to Excel, so you can frequently move your VBA code to VB.NET or C#.
SpreadsheetGear also supports custom functions, but again, you must provide .NET implementations of them or they will return #NAME!