参考另一个单词模板
我有一个文档模板 (.dot),它引用另一个模板(另一个 .dot 文件)。它如何使用?它是否预先编译,然后编译的版本存储在临时文件夹中的某个位置?或者,在第一次使用引用模板中的 VBA 代码之前,引用的模板可能会编译一次? 我问这个问题是因为我有一个奇怪的问题:我已经纠正了我引用的模板中的一个错误,但是引用它的另一个模板的行为就像它使用旧的(未修改的)模板一样!
I have a document template (.dot) which references another template (another .dot file). How does it get used? Does it get compiled beforehand and then the compiled version is stored somewhere in the temp folder? Or maybe the referenced template is compiled once before the VBA code in the referenced template is being used for the first time?
I am asking because I have a strange problem: I've corrected a bug in my referenced template, but the other template that references it behaves as if it uses the old (unmodified) template!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 Microsoft 文档 ,第一个执行的 vba 是文档,然后是来自附加模板的 vba 和来自附加模板的 vba。
According to the Microsoft documentation, the first vba executed is the document one, then the vba from the attached template and the vba from the attached attached template.