Impossible to close excel without saving message in internet explorer

  • Thread starter Thread starter tinftinf
  • Start date Start date
T

tinftinf

Hello
Does someone knows how prevent the dialogue box for saving when I leave
an excel sheet opened in internet explorer ?
The use of "ThisWorkbook.Saved = True" in the event "Before_close" has
no effect with internet explorer

Thanks
 
Application.DisplayAlerts = False
Workbooks("BOOK1.XLS").Close
Application.DisplayAlerts = True
 
JLGWhiz a écrit :
Application.DisplayAlerts = False
Workbooks("BOOK1.XLS").Close
Application.DisplayAlerts = True
Thank you for the input but it isn't efficious : IE ask for saving
before the event VBA 'before_close'
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top