L L.A. Lawyer Feb 21, 2009 #1 I want to delete the table "OldStuff" in a different database called "OtherDatabase". How is that done? Access 2000
I want to delete the table "OldStuff" in a different database called "OtherDatabase". How is that done? Access 2000
D Douglas J. Steele Feb 21, 2009 #2 Dim dbOther As DAO.Database Set dbOther = OpenDatabase("E:\Folder\OtherDatabase.mdb") dbOther.TableDefs.Delete "OldStuff" dbOther.Close Set dbOther = Nothing
Dim dbOther As DAO.Database Set dbOther = OpenDatabase("E:\Folder\OtherDatabase.mdb") dbOther.TableDefs.Delete "OldStuff" dbOther.Close Set dbOther = Nothing