On Error Resume Next
CurrentDb.TableDefs.Delete "yourtablename"
The error check is just there in case you try to delete a table that doesn't actually exist. Just put this into your code and run. You might want to make the sub a bit more useful and pass the tablename as a parameter.