Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个存储在其中的宏的 dotm。创建新文档时,我需要消除对 dotm 文件的引用(如果您正在查看 VBA 编辑器中的项目)。
用VBA代码可以做到这一点吗?
Attachedtemplate您可以通过使用该属性将原始引用替换为对另一个模板的引用来切断原始引用。例如:
Attachedtemplate
Private Sub Document_New() ActiveDocument.AttachedTemplate = "C:\Users\Joe\AppData\Roaming\Microsoft\Templates\Normal.dotm" End Sub