Turn OFF Autosave just for a particular workbook?

G

Guest

Is there a way to do this? I know you can set the Autosave to ONLY save the current workbook, but is there a way to code the opposite - something in the workbook's code to say "while this workbook is open, never Autosave it"?

Thanks for any help,

T
 
G

Guest

Tony,

Application.AutoRecover.Enabled = False


What you should do is determine what the setting is first, then make your
change and than return the setting to its original setting when they change
or close the workbook. One thing to keep in mind this is a globle setting
for all workbooks, not just yours. Knowing this you might wanna use the
workbook activate and deactivate events.

Bill
 

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

Top