Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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) "windsurferLA" wrote in message ... 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 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Bob Phillips wrote:
IN the code that works, precede with Application.DisplayAlerts = False reset at the end. Good Idea... Thanks .... WindsurferLA |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help! Replacing Existing Information with New Entries | Excel Worksheet Functions | |||
Existing file not defaulting to same location using "Save As" | Excel Discussion (Misc queries) | |||
can i save an existing .xls file as a .csv file using command line | Excel Discussion (Misc queries) | |||
get path - save new file - same sub-directory as existing file | Excel Programming | |||
Automatically replace existing file on save | Excel Programming |