
delete external DB's table from current DB?
Quote:
> Sub DelTbl()
> Dim db As Database
> Set db = OpenDatabase("<Name of DB with PATH>")
> db.TableDefs.Delete ("<Name of table in db>")
> End Sub
Will this keep the db that the user is currently in open? I mean, in all
my past experience, opening an external db from within one always closes
the current one in order to open the external one. When I run this
procedure as a first step in a larger sub, will the db the the code's in
stay open?
Thanks.