Create a blank database

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

For backup purposes I would like to create a blank database and copy certain
tables to it. Is this possible? I know it is possible to create an empty
database beforehand and then insert tables into it. But is it possible to
create the blank database in VB and then insert the tables?
 
You can use the CreateDatabase method.
CreateDatabase "C:\deleteme.mdb",dbLangGeneral
 
Back
Top