method Clone (Table: Object)
Clone method creates a clone of another table by copying the field and index definitions, and linking to the original table. Any changes to the original table will apply to the cloned table. Use the Refresh method to refresh the Clone table after changes are made.
Clone method can be used for Memory Tables and for Tables in Form Designer.
Clone method syntax has these named arguments:
Parameter |
Description |
|---|---|
Table |
Required. The table to be cloned. |
Note: To Copy a memory table without linking to the original table, use the CopyTable method.
For example:
Dim NewTable as Object
NewTable = ExistingTable.Clone