DoCmd Object.
The CopyObject method carries out the CopyObject action in Visual Basic. For more information on how the action and its arguments work, see the action topic.
DoCmd.CopyObject [destinationdatabase] [, newname] [, sourceobjecttype, åsourceobjectname]
The CopyObject method uses the following arguments.
Argument | Description |
destinationdatabase | A string expression that is the valid path and file name for the database you want to copy the object into. To select the current database, leave this argument blank. |
If you execute Visual Basic code containing the CopyObject method in a library database and leave this argument blank, Microsoft Access copies the object into the library database. | |
newname | A string expression that is the new name for the object you want to copy. To use the same name if you are copying into another database, leave this argument blank. |
sourceobjecttype |
One of the following intrinsic
constants: acTable |
sourceobjectname | A string expression that is the valid name of an object of the type selected with the sourceobjecttype argument. |
If you execute Visual Basic code containing the CopyObject method in a library database, Microsoft Access looks for the object with this name first in the library database, then in the current database. |
You must include either the destinationdatabase or newname argument or both for this method.
If you leave the sourceobjecttype and sourceobjectname arguments blank, Microsoft Access copies the object selected in the Database window. To select an object in the Database window, you can use the SelectObject action or SelectObject method with the In Database Window argument set to Yes (True).
If you specify the sourceobjecttype and sourceobjectname arguments but leave either the newname argument or the destinationdatabase argument blank, you must include the newname or destinationdatabase arguments comma. If you leave a trailing argument blank, dont use a comma following the last argument you specify.
CopyObject Action, DoCmd Object, Rename Method, SelectObject Method, TransferDatabase Method.
This example uses the CopyObject method to copy the Employees table and give it a new name in the current database.
DoCmd.CopyObject , "Employees Copy", acTable, "Employees"