A
AlexD
When I'm trying to rename a table by using:
DoCmd.Rename "tblTable", acTable, "tblTable1"
I'm getting a message:
"The database engine could not lock table "tblTable"
because it is in use by another person or process."
Before I did a query, which use this table, such as
Me.cboComboBox.RowSource = "SELECT ... "
How could I free this table to be renamed.
Thanks
DoCmd.Rename "tblTable", acTable, "tblTable1"
I'm getting a message:
"The database engine could not lock table "tblTable"
because it is in use by another person or process."
Before I did a query, which use this table, such as
Me.cboComboBox.RowSource = "SELECT ... "
How could I free this table to be renamed.
Thanks