On one of my forms there is currently a listbox that is populated by a Query that uses multiple other tables/queries.
I have been running into a problem where I try to update one of the tables (using a button on the form) by running a "Make table" query that will delete the table and repopulate it with the new values. This does not work as i get the message:
"The database engine could not lick table 'tableName' because it is already in use by another person or process."
I figure this is because the listbox/query is using the data in the table. So my question is will an "Update" query return the same problem and if so is there a way around this error (to edit the data in the table while the listbox is using it)?
Thanks