K
Karen Hagerman
Still a newbie and working on my first deployable database.
I'll be using the Package Wizard to create a setup package.
One of the capabilities I'd like to have in the database is the ability to
backup the back-end data tables from the database. Using just filecopy
doesn't work because the back-end is linked to the front-end database AND
using the built-in backup feature in Access 2003 doesn't work because it
backs up the front-end, not the back-end.
I found this piece of code on the internet
Dim fs As Object
Set fs = CreateObject("Scripting.FileSystemObject")
fs.copyfile File1, File2
Set fs = Nothing
So........what is the downside of using Scripting.FileSystemObject"?
Karen
I'll be using the Package Wizard to create a setup package.
One of the capabilities I'd like to have in the database is the ability to
backup the back-end data tables from the database. Using just filecopy
doesn't work because the back-end is linked to the front-end database AND
using the built-in backup feature in Access 2003 doesn't work because it
backs up the front-end, not the back-end.
I found this piece of code on the internet
Dim fs As Object
Set fs = CreateObject("Scripting.FileSystemObject")
fs.copyfile File1, File2
Set fs = Nothing
So........what is the downside of using Scripting.FileSystemObject"?
Karen