View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Dan[_37_] Dan[_37_] is offline
external usenet poster
 
Posts: 1
Default Cant close Excel App from Power Point

This should be simple but apprently it's not.
I am trying to programaticly have vba close the Excel
Application out completly, not just a window or workbook,
from my power point code module. Somthing like this

This Sub is in a module within a power point File which is
open at the time the sub is run, The Excel App is also
open at the time of the code execution.

Code Module in Power Point:

Sub CloseExcel()
Excel.Application.Quit
End sub

Why is it not closing the Excel application ?