Application.ConvertAccessProject Method (Access)
Converts the specified Microsoft Access file from one version to another.
Syntax
식 .ConvertAccessProject(SourceFilename, DestinationFilename, DestinationFileFormat)
식 A variable that represents an Application object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
SourceFilename |
필수 |
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 |
필수 |
String |
e name of the file where Access saves the converted file. If a path isn't specified, Access saves the file in the current directory. |
DestinationFileFormat |
필수 |
AcFileFormat |
An AcFileFormat constant that specifies the format of the converted file. |
Return Value
Nothing
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