warfareian said:
how do you make access save itself, and then copy itself to another area
(e.g. to a floppy disk)
There is no built-in way, but at its simplest you simply copy the .mdb file.
However, you should only copy the file while it is not in use - so a common
approach would be to split the database into two parts: front end and back
end. The back end contains the data (just the tables) and the front end
contains the forms, reports, coding, etc. Your application (the front end)
should check whether anyone is using the back end and if not, copy the whole
..mdb to another location.
You could add a number of bells and whistles to this routine by, for
example, compacting and then zipping the file.