Auto backup

L

livetohike

I have a couple of extremely important documents that I tend to work
on for days at a time. I 'save' frequently but may leave the doc open
for several days.

How can I do the following:

-Automatically save a new version (backup) of Word doc every few
minutes (if it has changed) or at least every time I 'save'.

-Have each version time stamped or at least have a unique name.

-Do the above ONLY for the Word docs I select. (not all of them).

-I am willing to take a hit on slower saves if I can get the above
functionality.

-I am willing to manually housekeep the large number of backups that
may result.

If someone has an alternate approach, please share that as well.

Thanks
 
P

Peter A

I have a couple of extremely important documents that I tend to work
on for days at a time. I 'save' frequently but may leave the doc open
for several days.

How can I do the following:

-Automatically save a new version (backup) of Word doc every few
minutes (if it has changed) or at least every time I 'save'.

-Have each version time stamped or at least have a unique name.

-Do the above ONLY for the Word docs I select. (not all of them).

-I am willing to take a hit on slower saves if I can get the above
functionality.

-I am willing to manually housekeep the large number of backups that
may result.

If someone has an alternate approach, please share that as well.

When I have a critical document such as this, I save it under different
names every hour or so - MyDocument-a.doc, MyDocument-b.doc, and so on.
Then, if a problem arises I have lost at most an hour of work.

I also save to two physically different locations, such as my regular My
Documents on the C drive and also to an external USB drive (a hard drive
and not a USB "Flash" drive") so that if my main drive goes into the
grass I will still have a recent copy.

One of the people here - Graham Mayor I believe - put out a terrific
macro that automatically saves a doc to 2 different locations.
 
L

livetohike

Seehttp://www.gmayor.com/save_numbered_versions.htmandhttp://www.gmayor.com/automatically_backup.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web sitewww.gmayor.com
Word MVP web sitehttp://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

livetohikewrote:

Thanks, just what I noted. As described below I believe there is an
error in the code. (I notified the author as well).

In order to get it to work I had to change the following:
strFileB = "D:\My Documents\Word Backup\Backup " & strFileA

to:
strFileB = "D:\My Documents\Word Backup\Backup\" & strFileA

I appended the back slash and deleted the space immediately preceding
the ending quote.
 
G

Graham Mayor

livetohike said:
Thanks, just what I noted. As described below I believe there is an
error in the code. (I notified the author as well).

In order to get it to work I had to change the following:
strFileB = "D:\My Documents\Word Backup\Backup " & strFileA

to:
strFileB = "D:\My Documents\Word Backup\Backup\" & strFileA

I appended the back slash and deleted the space immediately preceding
the ending quote.

There is nothing wrong with the code (and I don't recall receiving a comment
from you about it). You merely have an extra subdirectory in your path from
that used in the macro. The page merely demonstrates a method; there is
nothing written in stone as to how you should format you filenames and
paths.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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