LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,718
Default Autosave doesn't work

If you're expecting the AutoSave add-in to help you, it does not load with
Excel under automation.

If, on the other hand, you're saying that you are making changes, saving the
workbook and still Excel prompts you to save changes, I'd suggest telling
Excel that the workbook is saved just before closing it:

Set XL = CreateObject("Excel.Application")
XL.Visible = True
XL.Workbooks.Add
XL.Activesheet.Range("A1").Value = 1
XL.ActiveWorkbook.Saved = True
XL.ActiveWorkbook.Close ''No prompt

--
Jim
"Alonso Vilela" wrote in message
...
|I use Automation with excel but When I change the name of the book and
| sheets, later I save the book, but all the time and end show me a message
if
| I want to save the changes in the book.
|
| I set autosave in true but doesn't work.
|
| Help me please.
|
|


 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
program blinks and I lose 3-4 hours of work, autosave set 10 minut Dennis Mackay Excel Discussion (Misc queries) 1 August 24th 06 02:24 AM
Opened Autosave but when closing workbook Autosave closes itself Ken Excel Worksheet Functions 0 October 29th 05 05:11 PM
autosave Valerie Excel Worksheet Functions 2 September 28th 05 01:01 AM
Removing AUTOSAVE.XLS(AUTOSAVE.XLA) from VBA editor??? belblanco[_13_] Excel Programming 5 July 17th 04 10:24 AM
Removing AUTOSAVE.XLS(AUTOSAVE.XLA) from VBA editor??? belblanco[_14_] Excel Programming 0 July 13th 04 07:23 PM


All times are GMT +1. The time now is 08:06 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"