CreateAccessProject Method

CreateAccessProject Method

See Also                  Applies To

You can use the CreateAccessProject method to create a new Microsoft Access project (.adp) on disk.

Syntax

object.CreateAccessProject projname [, connection ]

The CreateAccessProject method has the following arguments.

Argument Description
object A string expression that evaluates to the Application object.
projname A string expression that is the name of the new Access project, including the path name and the file name extension. If your network supports it, you can also specify a network path in the following form:

\\Server\Share\Folder\Filename.adp

connection A string expression that's the valid connection string for the Access project. See the ADO ConnectionString property for details about this string.

Remarks

The CreateAccessProject method enables you to create a new Access project from within Microsoft Access or another application through Automation, formally called OLE Automation. For example, you can use the CreateAccessProject method from Microsoft Excel to create a new Access project on disk. Once you have created an instance of Microsoft Access from another application, you must also create a new Access project.

If the Access project identified by projname already exists, an error occurs.

Notes