Страница: 1 |
Как поставить пароль на mdb базу программно или с помощью visdata ?
Function ap_DatabasePassword(strDBPassword, strDBPrevPass) On Error GoTo errDatabasePassword Dim db As DATABASE errDatabasePassword: End Function Страница: 1 |
Вопрос: Пароль
Добавлено: 29.09.03 04:04
Автор вопроса: admsasha | Web-сайт:
Ответы
Всего ответов: 1
Номер ответа: 1
Автор ответа:
Geo
ICQ: 81917030
Вопросов: 15
Ответов: 17
Профиль | | #1
Добавлено: 29.09.03 12:18
'strDBPassword is the new password for the database.
'strDBPrevPass is the previous password for the database.
Set db = CurrentDb()
'This line adds the new password to the database.
db.NewPassword strDBPrevPass, strDBPassword
'Function successful
Exit Function
MsgBox "Function 'ap_DatabasePassword' did not complete successfully."
Exit Function