J
jokobe
I'm opening Word 2000 Document from Acc 2000
Set WordDoc = wordApp.Documents.Open(stappname)
With wordApp
'make the application visible
.Visible = True
'open the doucment
.Documents.Open (" " & strDocName & " ")
and later the document and Word is closed:
oDoc.Close
wordApp.Quit)
On the surface this is working fine, the document is closed and word is
gone. But when having a look at the task manager, there is still a Winword
service running. After opening and closing a five docs, there are running
five Winword processes.
Any helpful hints?
jokobe
Set WordDoc = wordApp.Documents.Open(stappname)
With wordApp
'make the application visible
.Visible = True
'open the doucment
.Documents.Open (" " & strDocName & " ")
and later the document and Word is closed:
oDoc.Close
wordApp.Quit)
On the surface this is working fine, the document is closed and word is
gone. But when having a look at the task manager, there is still a Winword
service running. After opening and closing a five docs, there are running
five Winword processes.
Any helpful hints?
jokobe