打印本文 打印本文 关闭窗口 关闭窗口
创建一个带密码的空数据库
作者:武汉SEO闵涛  文章来源:敏韬网  点击数869  更新时间:2009/4/22 20:43:08  文章录入:mintao  责任编辑:mintao
Function CreatePassWordDB(strPathName As String, strPsd As String) As Boolean
On Error GoTo Exit_ERR
Dim wrkDefault As Workspace
Dim NewDB As Database

CreatePassWordDB = False
Set wrkDefault = DBEngine.Workspaces(0)
If Dir(strPathName) <> "" Then Kill strPathName
Set NewDB = wrkDefault.CreateDatabase(strPathName, dbLangGeneral & ";pwd=" & strPsd & "")

NewDB.Close
Set NewDB = Nothing

CreatePassWordDB = True
Exit Function

Exit_ERR:
MsgBox "备份失败!" & vbCrLf & vbCrLf & Err.Description, vbExclamation
Exit Function
End Function

打印本文 打印本文 关闭窗口 关闭窗口