23-12-2008, 04:55 PM
No problem ^^
Just to remember, it's good to check if the folder already does not exist, before creating it.
Just to remember, it's good to check if the folder already does not exist, before creating it.
Code:
' Check if the database directory is there, if its not make it
If LCase$(Dir(App.Path & "\database", vbDirectory)) "database" Then
Call MkDir(App.Path & "\Database")
End If