WinWord.exe不会关闭

时间:2013-11-11 18:52:17

标签: vba ms-word taskmanager

我遇到了使用

从Excel创建Word文档Word的问题
Set wordapp = CreateObject("word.Application")
Set letter = wordapp.Documents.Add

在第一次运行时它运行正常,在第二次运行时它会挂起。我认为问题是如果我使用Word中的关闭按钮关闭我创建的文档,它将不会关闭WinWord.Exe。我认为这与我是否保存文件有关。我怎么能绕过这个?

我卸载/停用了我的所有加载项(听说这可能是一个问题)无济于事。

1 个答案:

答案 0 :(得分:1)

尝试关闭并释放对象

Set wordapp = CreateObject("word.Application")
Set letter = wordapp.Documents.Add

'release the letter object
set letter = Nothing
'quit the word appication
wordApp.Quit
'release the app object
set wordapp = Nothing