合并Microsoft Word文档后,需要做什么才能使宏运行?
我们在Office2003中使用XML或Word ML格式。
合并不发生在MS Word应用程序内部,而是由另一个名为sims by capita的应用程序进行合并。
在预览文档时,如何使宏在合并后运行?
见 this page .
例如:
WithEvents WordApp As Application Private Sub Document_Open() Set WordApp = Application End Sub Private Sub WordApp_MailMergeAfterMerge(ByVal Doc As Document, ByVal DocResult As Document) 'Do things End Sub