Outlook Script: Pb closing Excel

B

bbnimda

Hi All,

I use an outlook script, I create/open an excel file and write/get info
from/to the Excell File, All is working fine But when I check the task
manager, Excel remain in the process list How can I stop it correctly.

here's a part of my code

Set objExcelApp = Item.Application.CreateObject("Excel.Application")
......
.....
Const olSave = 1
ObjExcelApp.Quit olSave
ObjExcelApp.close
 
Top