View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
EricG EricG is offline
external usenet poster
 
Posts: 220
Default Close excel in vbe


Application.Quit

If you have unsaved workbooks, Excel will ask you if you want to save them.
To avoid this message, you can add the lines below, or you can save the
workbooks ahead of time and then quit.

Application.DisplayAlerts = False
Application.Quit

HTH,

Eric


"pls123" wrote:

hello all !!
im using this..

ThisWorkbook.Save
ThisWorkbook.Close

...to save and close my page at a indicated time..
..but the page of excel remains open..
..and i want to close it too..
how can i do it ??
tx all