VBA项目浏览器仍然显示由macrosclosures的Excel工作簿

我创build了一个macros,打开一个Excel工作簿,并执行一些操作,然后在最后closures文件。macros运行良好。

现在,当我在vba编辑器中打开我的VBA项目浏览器。 它显示了即使被closures但已被macros打开的文件列表。 我如何从项目浏览器窗口中删除它们? 为什么它仍然显示优秀的工作簿,已经closures? 有无论如何修复它或限制?

我自己find了答案,抱歉在这里浪费了一些空间。 我请求closures这些或删除这些post,如果你认为它不必要谢谢!

Dim Excel_workbook as excel.workbook set Excel_workbook = workbooks.open("somefile name"); ' some code goes here ' at the end write the below statement set Excel_workbook = Nothing 'worked, I found at the 12 page of google search 

这是帮助我http://www.mrexcel.com/forum/showthread.php?t=50086的链接