一开始 我从“接触”的一种形式讲,是:
Dim wordApp As Word.Application
Dim wordDoc As Word.Document
Dim wordRange As Word.Range
Set wordApp = CreateObject("Word.Application")
wordApp.Visible = True
Set wordDoc = wordApp.Documents.Open(etikettenTemplate)
fill in some bookmarks in the word doc
Set wordApp = Nothing
Set wordDoc = Nothing
Set wordRange = Nothing
问题在于:这是该法首次实施的。 我第二次出现错误462: 遥远的服务器计算机没有或没有。
The trouble is, I can t control the whole cycle, as the user may need to edit the word doc before closing. Am I doing something wrong? Thanks for any suggestion