将 Visio 宏导出到 Visio COM 加载项
我在 VB 中编写了一些 Makros 和函数,所有代码在我的文档后面都运行良好。 为了保存我的代码并使其可供其他用户使用,我想为 VIsio 创建一个 COM 插件。 所以我购买了 Visual Studio 2008,我想将我的代码导入其中。
是否可以将导出的 .cls 文件包含到我的 Visual Studio COM-Add-on Projekt 中?
I have written some Makros and Functions in VB all code works fine behind my Document.
To save my code and make it available to other users I want to create a COM-add-in for VIsio.
So i bought Visual Studio 2008 and I want to import my code to it.
Is it possible to include my exported .cls file to my Visual Studio COM-Add-on Projekt?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Visual Studio 中的类与带有 .cs 扩展名(而不是 cls)的纯文本文件相同,因此您可以在项目中创建一个新类,并从 VBA 复制代码。
Classes in Visual Studio are the same plain text files with a .cs extension (as opposed to cls), so you could create a new class in your project, and copy over your code from VBA.