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

I've opened a support case with Microsoft on this. I'll let you know how it
turns out.

Rex

"Skeets" wrote:

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