View Single Post
  #10   Report Post  
Posted to microsoft.public.excel.programming
Skeets Skeets is offline
external usenet poster
 
Posts: 2
Default Excel Won't Quit

I have the same problem and have tried all suggustions. Any other ideas will
be appreciated.

"Rex" wrote:

After running this code, Excel remains:
Dim XL As Excel.Application
Set XL = CreateObject("Excel.Application")
XL.Workbooks.Open "C:\TEMP\AnyOld.XLS"
XL.Workbooks.Item(1).Close False
XL.Quit
Set XL = Nothing
Also tried .Close True and tried omitting .Close call.

What am I missing?
Rex