Convert Access 2010 to older versions
问题 I want to be able to convert a Access 2010 database to multiple different older version by using a script So if I feed a 2010 Access to the script I want it to spit out one of the following versions: 2000, 2002, 2003 or 2007. How is this possible? I'm not looking for a complete script, but more a pointer in the right direction or perhaps an example of how it can be done. * EDIT * TmpName = Destination & "\" & dbDisname & "_2002.mdb" If Dir(TmpName) <> "" Then FS.deletefile TmpName End If