Howdy,
Yesterday, I sent
out a message, but forgot a couple of key lines. Sorry for the oversite.
from win32com.client import Dispatch
#Open the sheet.
xl_app= Dispatch("Excel.Application")
xl_book=
xl_app.Workbooks.Open(<filename>)
#Close the sheet and exit the app.
xl_book.Close()
xl_app.Quit()
del xl_app
This leaves 'Excel' in the process list. How can I get rid of it?
Thanks for your time,
Mike
_______________________________________________ Python-win32 mailing list Python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32