Create a new .mdb with vba

Somebody

Registered User.
Local time
Today, 07:39
Joined
Apr 30, 2008
Messages
16
hi

is there a command or function that i can use to create a new database (.mdb) to a location that would be entered by a user

I essentialy want to be able create a back-end and put tables in it
i dont have a problem with coping table in a database but i cant create one with nothing in it

Thanks in advance
 
Dim dbNew As DAO.Database
Set dbNew = CreateDatabase("YourPath" & "YourDBname", dbLangGeneral)
 

Users who are viewing this thread

Back
Top Bottom