I'm creating an excel object using:

Code:
 Set xlOut = CreateObject("Excel.Application")
and then I'm closing it using:

Code:
 xlout.Quit
 Set xlOut = Nothing
and the darn thing won't go away until I close my app. Anyone tell me the painfully obvious thing I'm missing? Oh, and I've tried a DoEvents after it, but no joy.