Create a MS Access database using 4 lines of code
Create a MS Access database using 4 lines of code
Rate Create a MS Access database using 4 lines of code
(2(2 Vote))
Dim ws As Workspace
Dim db As Database
Set ws = DBEngine.Workspaces(0)
'substitute Password with the desired password
Set db = ws.CreateDatabase("test.mdb", dbLangGeneral & ";pwd=Password")
Create a MS Access database using 4 lines of code Comments
No comments yet — be the first to post one!
Post a Comment