View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Die_Another_Day Die_Another_Day is offline
external usenet poster
 
Posts: 644
Default Program Auto Yes for overwriting files

before save use this line of code:
application.displayalerts = false

after saving turn it back on with this line of code
application.displayalerts = true

HTH
Die_Another_Day