Jan 19, 2004 #1 mannah07 IS-IT--Management Dec 23, 2003 18 DE The error below pops up after closing a query I run in my menu, when I attempt to open the form of the table on which the query is running. Error: Table in use. The table may already be opened exclusively.
The error below pops up after closing a query I run in my menu, when I attempt to open the form of the table on which the query is running. Error: Table in use. The table may already be opened exclusively.
Jan 19, 2004 #2 jimoo Programmer Jun 2, 2003 1,111 US Is it possible that the form has it open already, or opening, exclusively in a private data session? If the form is opening that way, make sure you add some code in the menu or form to check and see if it is open first and close it. LOAD EVENT * Close it if necessary IF USED('myTable') SELECT myTable USE ENDIF Jim Osieczonek Delta Business Group, LLC http://www.deltabg.com
Is it possible that the form has it open already, or opening, exclusively in a private data session? If the form is opening that way, make sure you add some code in the menu or form to check and see if it is open first and close it. LOAD EVENT * Close it if necessary IF USED('myTable') SELECT myTable USE ENDIF Jim Osieczonek Delta Business Group, LLC http://www.deltabg.com
Jan 19, 2004 1 #3 baltman Technical User Mar 5, 2002 1,578 US A SQL command leaves the source table open. You'll have to add code to close it or otherwise account for this. Brian
A SQL command leaves the source table open. You'll have to add code to close it or otherwise account for this. Brian
Jan 19, 2004 #4 jrajesh Programmer Aug 12, 2001 72 HK Please use the "?" icon when you post a question. The 'bulb' is for tips. Thanks, Rajesh