Application.CreateAccessProject (Access)
You can use the CreateAccessProject method to create a new Microsoft Access project (.adp) on disk.
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. After 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. To create and open a new Access project as the current Access project in the Access window, use the NewAccessProject method of the Application object. To open an existing Access project as the current Access project in the Access window, use the OpenAccessProject method of the Application object.
CreateAccessProject (filepath, Connect)
Application.CreateAccessProject "C:\Order Entry.adp"
Arguments
The following argument is required
filepath (String) - 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.
Optional arguments
The following argument is optional
Connect (String) - A string expression that's the valid connection string for the Access project. See the ADO ConnectionString property for details about this string.