在 Office 自动化中分离代码和文档
我目前正在开发一个 vba 项目,以帮助文档开发人员更好更快地完成工作。
该工具在开发过程中很有帮助,但是在文档完成后就不再需要它了。
那么,有什么想法,关于如何自动导出没有vba代码的纯文档吗?或者我应该通过打开 vba 并删除其所有代码来愚蠢地做到这一点?
此外,有什么方法可以自动将 vba 代码应用到现有文档吗?
I'm currently working on an vba project to help document developers do their work better and faster.
The tool is helpful during the developing, but however, it's no longer needed after the document is complete.
So, is there any ideas, about how to export a pure document without vba code automatically? Or shall I do this stupidly by opening vba and remove all of its code?
Further more, Is there any ways, to automatically apply vba code to an existing document?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个加载项。您的 VBA 代码位于加载项中,但对您的文档进行操作。该插件可以创建自定义菜单来运行您的各种例程。
You can create an add-in. Your VBA code lives in the add-in, but operates on your documents. The add-in can create a custom menu to run your various routines.