View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Fredrik Wahlgren Fredrik Wahlgren is offline
external usenet poster
 
Posts: 339
Default Disabling 'File/Save' Menu Item


"Jim Thomlinson" wrote in message
...
I like this solution, but this is going to require this workbook to be

saved
as something different every time you want to save. (On the other hand

that
is what Paige asked for). I have always liked your solutions so I was
wondering if you had a cool way around this... :)


Thanks! Well, I guess Paige could create a hidden command with this code

Application.EnableEvents = False
ActiveWorkbook.Save
Application.EnableEvents = True

/Fredrik