ActiveWorkbook.Close

  • Thread starter Thread starter Matthew
  • Start date Start date
M

Matthew

Can the ActiveWorkbook.Close event be modified so that the Save dialogue
box comes up?
Thanks in advance.

Matthew Saxon
 
Matthew said:
Can the ActiveWorkbook.Close event be modified so that the Save dialogue
box comes up?
Thanks in advance.

Matthew Saxon
Sorry, so that the Save dialogue box does NOT come up...
 
Matthew,

Two ways......
Application.DisplayAlerts = False
(turns off the alert)
or
ThisWorkbook.Saved = True
(fools the workbook into "thinking" that it's saved whether it is or
not).

Use just prior to your Activeworkbook.Close

John
 
No, I already did a save as text file, but when I close the file it asks to
save again for some reason.

MS
 
Back
Top