是否可以使用 Visual Studio 2008 Express Edition 编写 Excel 插件?
我有这个问题是因为我不熟悉最新一代的MS VS 产品。
但由于工作原因,我可能需要为 Excel 2003 开发一个 Excel 插件。我想研究什么是替代方案(除了使用 VBA 之外)
我安装了 VS C++ 2008 Exp Edition。从可用的项目类型来看,我认为我无法在其中创建类似 xll 的程序。正确吗?
没有必要使用C/C++。只要能完成工作,VB 或 C# 都可以。
如果有该开发环境的相关示例,请提供指点。
I have this question because I am not familiar latest generation of MS VS product.
But for work reason I may need to develop an Excel plugin for Excel 2003. I would like to study what are the alternative (other than using VBA)
I have a VS C++ 2008 Exp Edition installed. From the available project types, I don't think I can create a xll like program in it. Is it correct?
It is not necessary to use C/C++. VB or C# are fine as long as they can get the job done.
If there is any relevant example for this development env, please kindly provide a pointer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用任何编译代码来为 Excel 编写 Excel 插件...只要您符合 Excel 插件的 API。
You can use anything that compiles code to write an Excel plugin for Excel... as long as you conform the the API for Excel plugins.
您可以尝试 XLW Excel API 的包装器
You can try XLW a wrapper for the Excel API