B
Bassel
I have a database that is secured and the bypass key is enabled.
However if database user creates a new database linked to the same secured
workgroup.
He can uses a code to enable the bypass again
Function fncResetByPassEnable()
Dim dbTmp As Database
Set dbTmp = DBEngine.OpenDatabase("D:\Database\MyDB.mdb")
dbTmp.Properties("AllowBypasskey") = True
dbTmp.Close
Set dbTmp = Nothing
End Function
Is there is a way to prevent this
Best Regards
However if database user creates a new database linked to the same secured
workgroup.
He can uses a code to enable the bypass again
Function fncResetByPassEnable()
Dim dbTmp As Database
Set dbTmp = DBEngine.OpenDatabase("D:\Database\MyDB.mdb")
dbTmp.Properties("AllowBypasskey") = True
dbTmp.Close
Set dbTmp = Nothing
End Function
Is there is a way to prevent this
Best Regards