goatsaregreat
Programmer
I am trying to create Error Handling code that will jump a line if a certain error occurs. Here is the problem. I have to delete a table from a DB on exiting a form. The problem is, that I need to have that table deleted and created multiple times during the life of the form. I have no problem with that aspect. The problem is, sometimes, when I get to the form's unload event, the table is already deleted. I need to know how to jump that line of code if the table is gone already. TIA for your help. Here is the code I am using to dump the table.
db.Execute "drop table tblquery"
db.Execute "drop table tblquery"