M
Mike
This application consists of a number of tables and forms. Two of the forms access the "products" table. It is necessary to switch between these two forms on a regular basis, but there is no need to keep form1 open when using form2
Form 1 has a command button to switch to form 2. The VB code that runs when this button is clicked simply closes form 1, opens form 2 and makes the "new record" record active
When it gets to the line that opens form 2, the error
"the table "products" is already opened exclusively by another user, or it is already open in the user interface and cannot be manipulated programmatically.
What needs to be done so form 1 releases the "products" table so form 2 can access it?
Form 1 has a command button to switch to form 2. The VB code that runs when this button is clicked simply closes form 1, opens form 2 and makes the "new record" record active
When it gets to the line that opens form 2, the error
"the table "products" is already opened exclusively by another user, or it is already open in the user interface and cannot be manipulated programmatically.
What needs to be done so form 1 releases the "products" table so form 2 can access it?