Automatically Replacing existing file on save

W

windsurferLA

I'm using XL97 under WinXP-pro.

I use a "Sub auto_close()" macro to save my workbook when I close it.

The following VB code does the job of overwriting the existing file, but
it does not add the file to the Most Recently used (MRU) list:

Workbooks("Actions0.xls").Save

The following VB code adds the the file to the MRU list, but it requires
manual authorization to overwrite the existing file:

ActiveWorkbook.SaveAs FileName:= _
"C:\Documents and Settings\Michael\My
Documents\__Scratch\_2005Jan\XLmenu\Actions0.xls" _
, FileFormat:=xlNormal, Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, CreateBackup:=False, AddToMru:=True

The following code does NOT seem to work:
Workbooks("Actions0.xls").Save, AddToMru:=True

Can someone clue me in to the right syntax. I could not find it in any
of my reference books.

Thanks ... WindsurferLA
 
B

Bob Phillips

IN the code that works, precede with

Application.DisplayAlerts = False

reset at the end.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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

Similar Threads


Top