Deleting Workbook

  • Thread starter Thread starter Fred
  • Start date Start date
F

Fred

I've written some code that creates a workbook, emails it
to specific users, then closes it. I'd like to have my
code go in a delete the workbook. Any suggestions?
Thanks - Fred
 
Fred,

Just kill it!.... no really...

Try this:

Kill "C:\Documents and Settings\Administrator\Desktop\Book1.xls"

Of course you need to use the right file name. Also note you will have to
manage errors, such as File Not Found or Permission Denied (when the
workbook is open). But Kill will work....
 
That's perfect. Thanks!
-----Original Message-----
Fred,

Just kill it!.... no really...

Try this:

Kill "C:\Documents and Settings\Administrator\Desktop\Book1.xls"

Of course you need to use the right file name. Also note you will have to
manage errors, such as File Not Found or Permission Denied (when the
workbook is open). But Kill will work....

--
Charles
www.officezealot.com





.
 
Back
Top