ConvertAccessProject Method [Access 2003 VBA Language Reference]
Converts the specified Microsoft Access file from one version to another.
expression.ConvertAccessProject(SourceFilename, DestinationFilename, DestinationFileFormat)
expression Required. An expression that returns one of the objects in the Applies To list.
SourceFilename Required String. The name of the Access file to convert. If a path isn't specified, Access looks for the file in the current directory.
DestinationFilename Required String. The name of the file where Access saves the converted file. If a path isn't specified, Access saves the file in the current directory.
AcFileFormat
AcFileFormat can be one of these AcFileFormat constants. |
acFileFormatAccess2 |
acFileFormatAccess2000 |
acFileFormatAccess2002 |
acFileFormatAccess95 |
acFileFormatAccess97 |
Remarks
The file specified by DestinationFilename cannot already exist, or an error occurs.
Example
The following example converts the specified Access 97 file to an Access 2000 file in the same directory.
Application.ConvertAccessProject _
SourceFilename:="C:\My Documents\Sales-Access97.mdb", _
DestinationFilename:="C:\My Documents\Sales-Access2000.mdb", _
DestinationFileFormat:=acFileFormatAccess2000
Applies to | Application Object